Initial commit
This commit is contained in:
57
gamemodes/darkrp/gamemode/cl_init.lua
Normal file
57
gamemodes/darkrp/gamemode/cl_init.lua
Normal file
@@ -0,0 +1,57 @@
|
||||
hook.Run("DarkRPStartedLoading")
|
||||
|
||||
GM.Version = "2.7.0"
|
||||
GM.Name = "DarkRP"
|
||||
GM.Author = "By FPtje Falco et al."
|
||||
|
||||
DeriveGamemode("sandbox")
|
||||
DEFINE_BASECLASS("gamemode_sandbox")
|
||||
GM.Sandbox = BaseClass
|
||||
|
||||
|
||||
local function LoadModules()
|
||||
local root = GM.FolderName .. "/gamemode/modules/"
|
||||
local _, folders = file.Find(root .. "*", "LUA")
|
||||
|
||||
for _, folder in SortedPairs(folders, true) do
|
||||
if DarkRP.disabledDefaults["modules"][folder] then continue end
|
||||
|
||||
for _, File in SortedPairs(file.Find(root .. folder .. "/sh_*.lua", "LUA"), true) do
|
||||
if File == "sh_interface.lua" then continue end
|
||||
include(root .. folder .. "/" .. File)
|
||||
end
|
||||
|
||||
for _, File in SortedPairs(file.Find(root .. folder .. "/cl_*.lua", "LUA"), true) do
|
||||
if File == "cl_interface.lua" then continue end
|
||||
include(root .. folder .. "/" .. File)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
GM.Config = {} -- config table
|
||||
GM.NoLicense = GM.NoLicense or {}
|
||||
|
||||
include("config/config.lua")
|
||||
include("libraries/sh_cami.lua")
|
||||
include("libraries/simplerr.lua")
|
||||
include("libraries/fn.lua")
|
||||
include("libraries/tablecheck.lua")
|
||||
include("libraries/interfaceloader.lua")
|
||||
include("libraries/disjointset.lua")
|
||||
include("config/licenseweapons.lua")
|
||||
|
||||
include("libraries/modificationloader.lua")
|
||||
|
||||
hook.Call("DarkRPPreLoadModules", GM)
|
||||
|
||||
LoadModules()
|
||||
|
||||
DarkRP.DARKRP_LOADING = true
|
||||
include("config/jobrelated.lua")
|
||||
include("config/addentities.lua")
|
||||
include("config/ammotypes.lua")
|
||||
DarkRP.DARKRP_LOADING = nil
|
||||
|
||||
DarkRP.finish()
|
||||
|
||||
hook.Call("DarkRPFinishedLoading", GM)
|
||||
Reference in New Issue
Block a user