mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
fixed timer parameter to use quote for string.
This commit is contained in:
parent
f43d4fcfa8
commit
b2b5497c0a
2 changed files with 8 additions and 5 deletions
|
|
@ -1,10 +1,12 @@
|
|||
function event_spawn(e)
|
||||
eq.set_timer(1,1200000);
|
||||
eq.set_timer("depop",1200000);
|
||||
e.self:SetRunning(true);
|
||||
end
|
||||
|
||||
function event_timer(e)
|
||||
eq.depop();
|
||||
if(e.timer == "depop") then
|
||||
eq.depop();
|
||||
end
|
||||
end
|
||||
|
||||
function event_combat(e)
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
function event_spawn(e)
|
||||
eq.set_timer(1,1200000);
|
||||
eq.set_timer("depop",1200000);
|
||||
e.self:SetRunning(true);
|
||||
end
|
||||
|
||||
function event_timer(e)
|
||||
eq.depop();
|
||||
if(e.timer == "depop") then
|
||||
eq.depop();
|
||||
end
|
||||
end
|
||||
|
||||
function event_combat(e)
|
||||
if(e.joined == true) then
|
||||
e.self:Say("The time fer talk is over. Raise yer guard!!");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue