PDA

View Full Version : powater::#Essence_of_Water.pl


LeftRoad
01-15-2010, 10:04 PM
When you hail the projection you do not get flagged, and Seer Mal Nae-Shi does not show Plane of Water as completed.

In #Essence_of_Water.pl, it has...
sub EVENT_SAY {
if($text =~ /Hail/i) {
quest::say("Well done.");
quest::summonitem(29163);
}
}
...and should be...
sub EVENT_SAY {
if($text =~ /Hail/i) {
quest::say("Well done.");
quest::setglobal("pop_water_coirnav_projection", 1, 5, "F");
$client->Message(4,"You receive a character flag!");
quest::summonitem(29163);
}
}

cavedude
01-31-2010, 10:26 PM
Thanks, updated PEQ's repo.