View Single Post
  #8  
Old 09-15-2008, 08:22 AM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

Here's what you are probably looking for:

Code:
sub EVENT_SAY {
  if($text=~/hail/i) {
    quest::say("Hello, $name. What can I do for you today?");
  }
}
Reply With Quote