PDA

View Full Version : Planar progression / Terris Thule


nosfentora
06-06-2012, 11:22 AM
just found a small error in one of the quests...

POTranquility/Elder_Poxbourne.pl


sub EVENT_SAY {

if($text=~/hail/i && defined $qglobals{pop_ponb_terris} && !defined $qglobals{pop_ponb_poxbourne}) {
quest::say("Finally, after all this time, my mind is at peace... thank you, $name, Subduer of Torment.");
quest::setglobal("pop_ponb_poxbourne", 1, 5, "F");
$client->Message("You receive a character flag!");
}

.....


$client->Message("You receive a character flag!");

should be

$client->Message(3,"You receive a character flag!");

otherwise the client doesn't display the flag message.

Robregen
06-06-2012, 12:51 PM
This has been corrected and submitted for projecteqquest. should be in with next quest push.