View Single Post
  #2  
Old 12-21-2003, 02:52 AM
Kroeg's Avatar
Kroeg
Hill Giant
 
Join Date: Oct 2003
Posts: 241
Default

EVENT_SAY{
if($1-=~"Hail"){say("Well met, young $name !")}
}


This should have semicolons ';' after each function...

like this:

EVENT_SAY {
if($1-=~"Hail"){ say("Well met, young $name !"); }
}


That's one place to start.... I couldn't get the old style to work.. but try removing the comma, trying again.. adding a space here or there, trying again.. etc.[/b][/b]
Reply With Quote