eqmac-quests/mischiefplane/Chuckles_the_Great.lua
2023-07-24 13:24:37 -07:00

19 lines
345 B
Lua

function event_spawn(e)
eq.set_timer("dance", 1000);
end
function event_timer(e)
if(e.timer == "dance") then
e.self:DoAnim(34); -- he does this animation constantly
end
end
function event_combat(e)
if(e.joined) then
if(not eq.is_paused_timer("dance")) then
eq.pause_timer("dance");
end
else
eq.resume_timer("dance");
end
end