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...
Code:
sub EVENT_SAY {
if($text =~ /Hail/i) {
quest::say("Well done.");
quest::summonitem(29163);
}
}
...and should be...
Code:
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);
}
}