aboutsummaryrefslogtreecommitdiff
path: root/gamemode/npcsystem/sh_townie.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/npcsystem/sh_townie.lua')
-rw-r--r--gamemode/npcsystem/sh_townie.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/gamemode/npcsystem/sh_townie.lua b/gamemode/npcsystem/sh_townie.lua
new file mode 100644
index 0000000..3b693c5
--- /dev/null
+++ b/gamemode/npcsystem/sh_townie.lua
@@ -0,0 +1,17 @@
+local reg = nrequire("sh_npcsystem.lua")
+
+local base1 = nrequire("sh_talkablenpc.lua")
+local base2 = nrequire("sh_moveingnpc.lua")
+local npc = {}
+
+local npc_m = {__index = function(self,key)
+ return base1[key] or base2[key]
+end}
+
+setmetatable(npc,npc_m)
+
+npc.Name = "Townie"
+
+reg.RegisterNPC(npc)
+
+return npc