mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
18 lines
No EOL
478 B
Raku
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);
|
|
} |