e9da54c2f9
Too many changes to list.
10 lines
249 B
Lua
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)
|