peq-quests/rivervale/Nillipuss.lua
2015-03-14 16:18:39 -04:00

15 lines
No EOL
475 B
Lua

function event_spawn(e)
eq.set_timer("nilly",math.random(750000));
end
function event_timer(e)
local random_say = math.random(2);
if(random_say == 1) then
e.self:Say("Nillipuss is my name. Stealing jumjum is my game. Think you can catch me? Let's see if you can! I'll always run faster than you ever ran.");
else
e.self:Say("Look what I've found! What a great find! It used to be yours, but now it is mine!");
end
eq.set_timer("nilly",math.random(750000));
end