This is what I had to do....
I had the same problem , this is how I got the few that are actually complete to work...
Remove the header line in the file i.e. /*zone:whatever ID:0000..*/
the "}" that is supposed to be at the end is on another line, I target b-4 it and backspace one space, that puts it at end and should be another on next line, leave it there.
here's an example of one of the soulbinders-
EVENT_SAY{
if($1- =~"Hail"){SAY("Greetings $name . When a hero of our world is slain. thier 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] if that is your wish.")}
}
EVENT_SAY{
if($1- =~"bind my soul"){SAY("Incoming bind. when you die. you will return here.")CASTSPELL("$userid","2049")}
}
/*END of FILE*/
|