View Single Post
  #10  
Old 10-26-2004, 04:24 AM
Draugr
Hill Giant
 
Join Date: Jan 2002
Posts: 141
Default

Ok, I did what you suggested and it was a good suggestion. I got the following to work so far.

Code:
sub EVENT_SAY     
 {     
if($text =~ /Hail/i)  
 {  
       quest::say("Greetings $name. I am the Qeynos Gate Healer and can offer you various services currently free of charge. As a member of the Order of Eternity  it is my duty to [bind your soul] to this location if that is your wish, or to offer [healing], cure [disease], or cure [poison].");  
 }
But, then I went and added this and when I type bind, still nothing happens.

Code:
#Binding to Point  
if($text =~ /bind/i)  
  {     
       quest::say("Binding your soul.  You will return here when you die.");  
       quest::castspell($userid,2049);  
  }
Any idea why that isn't working?
__________________
John Von Draugr
Reply With Quote