Thread: Help Refunding
View Single Post
  #8  
Old 03-11-2012, 03:09 AM
chrsschb's Avatar
chrsschb
Dragon
 
Join Date: Nov 2008
Location: GA
Posts: 904
Default

Roughly something like this?

Code:
sub EVENT_SAY
  {
  if($text=~/hail/i)
    {
    if(defined $qglobals{spellspent} == 150000)
      {
      quest::givecash(150000,0,0,0);
      quest::delglobal("spellspent");
      }
    else
      {
      plugin::Whisper("You've either already completed this refund script or you were never entitled to a refund");
      }
    }
  }
Reply With Quote