mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
37 lines
961 B
Lua
37 lines
961 B
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
|
|
-- Adds SF content
|
|
if not StormFox2.WorkShopVersion then
|
|
local i = 0
|
|
local function AddDir(dir,dirlen)
|
|
if not dirlen then dirlen = dir:len() end
|
|
local files, folders = file.Find(dir .. "/*", "GAME")
|
|
for _, fdir in ipairs(folders) do
|
|
if fdir ~= ".svn" then
|
|
AddDir(dir .. "/" .. fdir)
|
|
end
|
|
end
|
|
for k, v in ipairs(files) do
|
|
local fil = dir .. "/" .. v
|
|
resource.AddFile(fil)
|
|
i = i + 1
|
|
end
|
|
end
|
|
AddDir("materials/stormfox2")
|
|
AddDir("sound/stormfox2")
|
|
AddDir("models/stormfox2")
|
|
StormFox2.Msg("Added " .. i .. " content files.")
|
|
-- Add the workshop
|
|
else
|
|
resource.AddWorkshop(string.match(StormFox2.WorkShopURL, "%d+$"))
|
|
StormFox2.Msg("Added content files from workshop.")
|
|
end |