zombiesurvival-evolved/gamemodes/zombiesurvival/gamemode/maps/zs_dl_powercliff.lua
William Moodhe e9da54c2f9 ZS updates for 2014-2018
Too many changes to list.
2018-05-01 18:32:59 -04:00

10 lines
249 B
Lua

hook.Add("InitPostEntityMap", "Adding", function()
local pos = Vector(-2580, 2294, 48)
for _, ent in pairs(ents.FindByClass("info_player_zombie")) do
local rand = VectorRand()
rand.z = 0
rand = rand * 100
ent:SetPos(pos + rand)
end
end)