projecteq-projecteqquests/crescent/a_grove_hare.lua
2015-03-14 16:18:39 -04:00

9 lines
No EOL
187 B
Lua

function event_spawn(e)
local random = math.random(5000,30000);
e.self:RandomRoam(250, 250);
eq.set_timer("roam",random);
end
function event_timer(e)
e.self:RandomRoam(250, 250);
end