diff options
| author | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2015-12-30 14:09:16 -0500 |
|---|---|---|
| committer | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2015-12-30 14:09:16 -0500 |
| commit | a3a9aa4ba567a42c04adfd790049de8b390ee2d5 (patch) | |
| tree | 346bbd9d4484858b9476349d253197a792a1c4f7 /gamemode/npcsystem/aidirector.lua | |
| parent | 383aebf4bd5cfaf31702b3b5bbf94d331d6256fd (diff) | |
| download | wintersurvival2-a3a9aa4ba567a42c04adfd790049de8b390ee2d5.tar.gz wintersurvival2-a3a9aa4ba567a42c04adfd790049de8b390ee2d5.tar.bz2 wintersurvival2-a3a9aa4ba567a42c04adfd790049de8b390ee2d5.zip | |
Allowed aidirector to spawn dodos
Diffstat (limited to 'gamemode/npcsystem/aidirector.lua')
| -rw-r--r-- | gamemode/npcsystem/aidirector.lua | 8 |
1 files changed, 4 insertions, 4 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
|
