mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
20 lines
No EOL
632 B
Raku
20 lines
No EOL
632 B
Raku
# items: 13131
|
|
sub EVENT_SAY {
|
|
if($faction <= 3) {
|
|
if($text=~/hail/i) {
|
|
quest::say("Hello, $name. What can I do for you?");
|
|
}
|
|
if($text=~/dark rivers flow east/i) {
|
|
quest::say("So, Rueppy Kutpurse must have sent you. Here, take this case. Be careful, though. You don't want to get caught with that in town. It is illegal to possess such alcohol.");
|
|
quest::summonitem(13131); #Case of Blackburrow Stout
|
|
}
|
|
}
|
|
else {
|
|
quest::say("I am sorry, $name. You aren't trustworthy enough yet.");
|
|
}
|
|
}
|
|
|
|
sub EVENT_ITEM {
|
|
plugin::return_items(\%itemcount);
|
|
}
|
|
#END of FILE Zone:misty ID:33135 -- Gunrich |