mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
Upload
This commit is contained in:
33
lua/pac3/core/server/init.lua
Normal file
33
lua/pac3/core/server/init.lua
Normal file
@@ -0,0 +1,33 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
pac = pac or {}
|
||||
|
||||
pac.Parts = pac.Parts or {}
|
||||
pac.Errors = {}
|
||||
pac.resource = include("pac3/libraries/resource.lua")
|
||||
|
||||
CreateConVar("has_pac3", "1", {FCVAR_NOTIFY})
|
||||
CreateConVar("pac_allow_blood_color", "1", {FCVAR_NOTIFY}, "Allow to use custom blood color")
|
||||
CreateConVar('pac_allow_mdl', '1', CLIENT and {FCVAR_REPLICATED} or {FCVAR_ARCHIVE, FCVAR_REPLICATED}, 'Allow to use custom MDLs')
|
||||
CreateConVar('pac_allow_mdl_entity', '1', CLIENT and {FCVAR_REPLICATED} or {FCVAR_ARCHIVE, FCVAR_REPLICATED}, 'Allow to use custom MDLs as Entity')
|
||||
|
||||
include("util.lua")
|
||||
|
||||
include("pac3/core/shared/init.lua")
|
||||
|
||||
include("effects.lua")
|
||||
include("event.lua")
|
||||
include("net_messages.lua")
|
||||
include("test_suite_backdoor.lua")
|
||||
include("in_skybox.lua")
|
||||
|
||||
hook.Run("pac_Initialized")
|
||||
Reference in New Issue
Block a user