33 lines
581 B
Lua
33 lines
581 B
Lua
|
|
GM.Name = "Your Name Is Benny"
|
|
GM.Author = "Fesiug, Oranche, Alex"
|
|
GM.Email = "N/A"
|
|
GM.Website = "N/A"
|
|
|
|
BENNY = {}
|
|
|
|
local AC, IN = AddCSLuaFile, include
|
|
|
|
local CL = SERVER and AddCSLuaFile or include
|
|
|
|
function TSelShared( tbl, seed )
|
|
return tbl[math.Round( util.SharedRandom( seed, 1, #tbl ) )]
|
|
end
|
|
|
|
AC("language.lua")
|
|
IN("language.lua")
|
|
AC("camera.lua")
|
|
IN("camera.lua")
|
|
AC("items.lua")
|
|
IN("items.lua")
|
|
AC("player.lua")
|
|
IN("player.lua")
|
|
AC("player_class.lua")
|
|
IN("player_class.lua")
|
|
AC("inventory.lua")
|
|
IN("inventory.lua")
|
|
|
|
AC("debugmenu.lua")
|
|
IN("debugmenu.lua")
|
|
|
|
CL("hud.lua") |