View Single Post
  #1  
Old 06-06-2012, 11:22 AM
nosfentora
Discordant
 
Join Date: Oct 2004
Location: In a house
Posts: 377
Default Planar progression / Terris Thule

just found a small error in one of the quests...

POTranquility/Elder_Poxbourne.pl

Code:
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!");
        }

.....
Code:
 $client->Message("You receive a character flag!");
should be

Code:
 $client->Message(3,"You receive a character flag!");
otherwise the client doesn't display the flag message.
Reply With Quote