mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
9 lines
370 B
Raku
9 lines
370 B
Raku
sub EVENT_SAY {
|
|
if($text=~/Hail/i && $qglobals{pop_cod_preflag} == 1) {
|
|
quest::say("You believe you can [" . quest::saylink("challenge Bertoxxulous") . "], mortal?");
|
|
}
|
|
if($text=~/Challenge Bertoxxulous/i && $qglobals{pop_cod_preflag} == 1) {
|
|
quest::say("Give the Crypt Lord my regards");
|
|
quest::movepc(200,0,-16,-289,128); # Zone: lakeofillomen
|
|
}
|
|
}
|