peq-quests/tutorialb/Guard_Maddoc.pl
2024-01-05 18:41:26 -05:00

18 lines
No EOL
478 B
Raku

#zone - tutorialb
#quest - Queen Gloomfang
# items: 14018, 77780
sub EVENT_SAY {
if ($text=~/Hail/i) {
quest::say("Greetings, $name. We're glad you found your way to our camp. We can use all the help we can get!");
quest::taskselector(5096, 5098);
}
}
sub EVENT_ITEM {
if (plugin::check_handin(\%itemcount, 14018 => 1)) {
quest::summonitem(77780, 5); # Item: Distillate of Celestial Healing II
quest::exp(500);
}
plugin::return_items(\%itemcount);
}