mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
27 lines
680 B
Raku
27 lines
680 B
Raku
#Rinmark is spawned from an iksar master in this zone and is part of the Test of Patience. Please see the iksar master's quest file for details.
|
|
|
|
sub EVENT_SPAWN {
|
|
quest::settimer("Depop3",90);
|
|
}
|
|
|
|
sub EVENT_COMBAT {
|
|
if ($combat_state == 1) {
|
|
quest::stoptimer("Depop3");
|
|
quest::say("Good, your sense of timing is correct. Now begin! Show me that your training has not been wasted.");
|
|
} else {
|
|
quest::settimer("Depop3",90);
|
|
}
|
|
}
|
|
|
|
sub EVENT_TIMER {
|
|
if ($timer eq "Depop3") {
|
|
quest::stoptimer("Depop3");
|
|
quest::depop();
|
|
}
|
|
}
|
|
|
|
sub EVENT_DEATH_COMPLETE {
|
|
quest::say("Your ability is strong, may you serve Cazic Thule with all your might.");
|
|
}
|
|
|
|
#Submitted by: Jim Mills
|