peq-quests/grobb/Exterminator_Filrog.pl
2021-02-07 20:50:01 -08:00

15 lines
509 B
Raku

# items: 13253
sub EVENT_SAY {
if($text=~/hail/i){
quest::say("Hey you dere! Look at all these spiders! Dey called me to come kill em, but there is too many!!! If you bring me four eyes from da little spiders, I reward you!");
}
}
sub EVENT_ITEM {
if(plugin::check_handin(\%itemcount, 13253 => 4)){
quest::say("You good at killing spiders. Mebbe me should find anuder job. Here take da coins.");
quest::faction(376,1); # Faction: Grobb Merchants
quest::exp(100);
quest::givecash(1,1,1,0);
}
}