View Single Post
  #2  
Old 04-12-2004, 12:41 PM
Monrezz's Avatar
Monrezz
Dragon
 
Join Date: Mar 2003
Location: #loc
Posts: 745
Default

Try:
Code:
sub EVENT_SAY
{ 
  if($mname =~ /^Soulbinder/i)
    { 
      if($text=~/Hail/i)
        {
          quest::say("Greetings $name. When a hero of our world is slain their soul returns to the place it was last bound and the body is reincarnated. As a member of the Order of Eternity it is my duty to [bind your soul] to this location if that is your wish.");
        } 
      if($text=~/bind my soul/i)
        { 
          quest::say("You shall return here when your fate chooses death."); 
          quest::castspell($userid,2049); 
        }
    }
}
__________________

kRPG Profile
Reply With Quote