View Single Post
  #14  
Old 03-27-2004, 04:56 PM
Shadow-Wolf
Dragon
 
Join Date: Oct 2003
Posts: 511
Default

heres your problem!
Quote:
EVENT_SAY {
if ($1- =~ "Hail") { say(" Why hello there mister!") }
}
you forgot the ";" it should look like this
Quote:
EVENT_SAY {
if ($1- =~ "Hail") { say(" Why hello there mister!"); }
}
Reply With Quote