This commit is contained in:
lifestorm
2024-08-04 22:55:00 +03:00
parent 0e770b2b49
commit 94063e4369
7342 changed files with 1718932 additions and 14 deletions

View File

@@ -0,0 +1,44 @@
--[[
| 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/
--]]
-- VLL_CURR_FILE is local to each file
if CLIENT and pac and pace and pacx and not VLL_CURR_FILE and not VLL2_FILEDEF then return end
if not pace then
include("autorun/pac_editor_init.lua")
end
if not pace then
error("pac extra requires the pac editor")
end
if SERVER then
local function add_files(dir)
local files, folders = file.Find(dir .. "*", "LUA")
for key, file_name in pairs(files) do
AddCSLuaFile(dir .. file_name)
end
for key, folder_name in pairs(folders) do
add_files(dir .. folder_name .. "/")
end
end
add_files("pac3/extra/client/")
add_files("pac3/extra/shared/")
include("pac3/extra/server/init.lua")
end
if CLIENT then
include("pac3/extra/client/init.lua")
end