View Single Post
  #5  
Old 05-16-2005, 11:39 AM
steelrat
Sarnak
 
Join Date: Dec 2004
Location: Gloucester UK
Posts: 32
Default MWMDragon.. Help again!!! please!

Quote:
Originally Posted by mwmdragon
Code:
sub EVENT_SAY  
{  
  if ($text=~ /Hail/i)
  {
  quest::text ("Hail $name, of the $race race, you come to me because you have lost your soul.. ");  
  if($ulevel <= 15 )
  	     {
   	     quest::text ("you are but a novice, $name, I shall not charge you for this");
   	     quest::summonitem ( 17355);
  	     quest::text ( "place this into your inventory.. tell me yes when you have done");
  	     }
  }
  elsif($ulevel >= 16)
  {
  		quest::text ( "you are a seasoned adventurer, $name, 200pp shall be my price");
  		quest::summonitem(17355);
  		quest::text ("place this into your inventory.. say yes when ready");
  }

  if ($text=~ /yes/i && $ulevel <= 15)
   {
   quest::selfcast (3);
   }

   if ($text=~ /yes/i && $ulevel >= 16)
      {
      quest::text ( "and the little matter of 200pp, if you please");
      if($platinum eq 200 )
      		   {
   		   quest::selfcast (3);
   		   }
       }
}
# end of file
This script works FINE up until the line if($platinum eq 200 ) it doesn't get past this line, it's like the npc doesn't know the plat is given???
any ideas?
__________________
SteelRat..
Server Owner "ElseWhen"
Reply With Quote