peq-quests/ecommons/Sergeant_Ragus.pl
hg 4eb1bdca00 Convert task ids to live task ids
Custom non-live task ids (or unknown) are placed in the 500000+ range
2022-11-18 20:22:54 -05:00

18 lines
537 B
Raku

# items: 84091, 84092, 84093, 84088
sub EVENT_SPAWN {
quest::settimer("ec_Ragus", 600);
}
sub EVENT_SAY {
if ($text=~/trick or treat/i) {
quest::say("Hah! Here's the tastiest treat of them all! Enjoy!");
quest::summonitem(quest::ChooseRandom(84091, 84092, 84093, 84088, 84088, 84088, 84088, 84088, 84088, 84088)); # Item(s): Sand (84091)
quest::updatetaskactivity(500220, 2);
}
}
sub EVENT_TIMER {
if ($timer eq "ec_Ragus") {
quest::shout("Trick or treat! Smell my feet! Give me something good to eat!");
}
}