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