 |
Casius Novice
Joined: 03 Sep 2004 Posts: 34
|
Posted: Fri Feb 04, 2005 12:33 am
Error message |
What is an error parsing command?
Access violation at address 0054087E in module'zmud.exe'. Read of address 002940c6
i keep getting this above error message for this script below
this is the script
#TRIGGER {You pump out at %1 with a powerful side kick.} {
#add torsopoint 2
#condition {You connect to the torso} {#add torsopoint 2} {within|param=1}
}
 |
|
|
 |
Vorax Apprentice

Joined: 29 Jun 2001 Posts: 198 Location: USA
|
Posted: Fri Feb 04, 2005 2:11 am |
The #CONDITION doesn't go inside the trigger. It is actually another trigger itself that follows immediatly after the previous trigger.
#TRIGGER {You pump out at * with a powerful side kick.} {#ADD torsopoint 2}
#CONDITION {You connect to the torso} {#ADD torsopoint 2} {within|param=1}
Also, it's unwise to use %1 in the trigger pattern itself. Instead, use one of the predefined wildcard variables (which is what the * is). |
|
|
 |
|
|