blob: c7d549c4de47235114564d4a022e6db1c5b7ebdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
local ENT = {}
local base = nrequire("sh_basenpc.lua")
ENT.Type = "anim"
ENT.Base = "base_nextbot"
local ent_m = {__index = base}
hook.Add("artery_core_loaded","load_ent_art_npc",function()
print("At the time artery_core_loaded is called, ENT is", ENT)
setmetatable(ENT,ent_m)
end)
return ENT
|