aboutsummaryrefslogtreecommitdiff
path: root/gamemode/npcsystem
diff options
context:
space:
mode:
authorAlexander Pickering <Alexander.Pickering@anondomain.site90.net>2015-12-30 14:09:16 -0500
committerAlexander Pickering <Alexander.Pickering@anondomain.site90.net>2015-12-30 14:09:16 -0500
commita3a9aa4ba567a42c04adfd790049de8b390ee2d5 (patch)
tree346bbd9d4484858b9476349d253197a792a1c4f7 /gamemode/npcsystem
parent383aebf4bd5cfaf31702b3b5bbf94d331d6256fd (diff)
downloadwintersurvival2-a3a9aa4ba567a42c04adfd790049de8b390ee2d5.tar.gz
wintersurvival2-a3a9aa4ba567a42c04adfd790049de8b390ee2d5.tar.bz2
wintersurvival2-a3a9aa4ba567a42c04adfd790049de8b390ee2d5.zip
Allowed aidirector to spawn dodos
Diffstat (limited to 'gamemode/npcsystem')
-rw-r--r--gamemode/npcsystem/aidirector.lua8
-rw-r--r--gamemode/npcsystem/loadnpcs.lua3
-rw-r--r--gamemode/npcsystem/npcs/bird.lua2
3 files changed, 7 insertions, 6 deletions
diff --git a/gamemode/npcsystem/aidirector.lua b/gamemode/npcsystem/aidirector.lua
index d5da7db..f6cd0f9 100644
--- a/gamemode/npcsystem/aidirector.lua
+++ b/gamemode/npcsystem/aidirector.lua
@@ -1,7 +1,7 @@
--Lol i dunno, spawn some npc's or something
-concommand.Add("ws_spawnbird",function(ply, cmd, args)
- SpawnNpcByName("Bird",ply:GetPos())
+concommand.Add("ws_spawnzomb",function(ply, cmd, args)
+ SpawnNpcByName("Zombie",ply:GetPos())
end
)
@@ -40,7 +40,7 @@ local traceline = util.TraceLine
local contents = util.PointContents
local Up = Vector(0,0,1)
---Randomly spawn npc's around?
+--Randomly spawn bird npc's around?
local Tick = CurTime()
hook.Add("Tick","SpawnAmbient",function()
if(CLIENT) then return end
@@ -71,7 +71,7 @@ hook.Add("Tick","SpawnAmbient",function()
local C = contents(Pos)
if (C != CONTENTS_WATER and C != CONTENTS_WATER+CONTENTS_TRANSLUCENT) then
- print("Appropriate place found, spawning bird)")
+ --print("Appropriate place found, spawning bird)")
SpawnNpcByName("Bird",Pos)
break
end
diff --git a/gamemode/npcsystem/loadnpcs.lua b/gamemode/npcsystem/loadnpcs.lua
index 72a1511..c522400 100644
--- a/gamemode/npcsystem/loadnpcs.lua
+++ b/gamemode/npcsystem/loadnpcs.lua
@@ -39,7 +39,7 @@ function GetNpcByName(name)
return nil
end
-
+--[[
function GM:SpawnNPCByName(name,pos)
print("Server side, spawning bird!")
@@ -75,6 +75,7 @@ function GM:SpawnNPCByName(name,pos)
end
ent:Spawn()
end
+]]
--[[
function GetRecipeForItem(name)
for k,v in pairs( GAMEMODE.Recipes ) do
diff --git a/gamemode/npcsystem/npcs/bird.lua b/gamemode/npcsystem/npcs/bird.lua
index d09f1ef..fa98335 100644
--- a/gamemode/npcsystem/npcs/bird.lua
+++ b/gamemode/npcsystem/npcs/bird.lua
@@ -33,7 +33,7 @@ end
--What to replace ENT:RunBehaviour with
function NPC:Behave()
- print("Going into bird's custom behaviour")
+ --print("Going into bird's custom behaviour")
while ( true ) do
self:StartActivity( ACT_IDLE ) -- walk anims
self:PlaySequenceAndWait( "Idle01" ) -- Sit on the floor