View Single Post
  #1  
Old 01-15-2010, 10:04 PM
LeftRoad
Sarnak
 
Join Date: Aug 2005
Location: Maine
Posts: 38
Default powater::#Essence_of_Water.pl

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);
	}
}
Reply With Quote