Whether probably to make so that the zombie a bot teleported to the player which it attacks, time in 10 seconds?
Scripts
Teleport zombie
Teleport zombie
1

Re: Teleport zombie
Autumn has writtenfunction Array(size,value)
local array = {}
for i = 1, size do
array[i]=value
end
return array
end
mx = Array(32,0)
my = Array(32,0)
timer(150,"requestdata","",0)
function requestdata()
reqcld(0,2)
end
addhook("clientdata","clientdata")
function clientdata(id,mode,x,y)
if mode == 2 then
mx[id] = x
my[id] = y
end
end
addhook("attack","client")
function client(id)
if player(id,"weapon") == 78 then
parse("setpos "..id.." "..mx[id].." "..my[id].."")
end
end
Autumn has written
EngiN33R has written
Autumn has written
oxytamine has written
1
