There might be an configuration error in your given example from the script instructions.
When I copy the header from the configuration site above the EXAMPLE pattern it doesn't really fit.
It seems the trigger ID is missing so it should look like this:
Please correct me If I'm wrong here^^
When I copy the header from the configuration site above the EXAMPLE pattern it doesn't really fit.
Code:
# Rate Prio Trig Type Skil Targ Stat
# ==== ==== ==== ==== ==== ==== ====
# MY_EXAMPLE = [ [ 5, 0, 0, nil, 0 ], # Random melee attack
# [ 3, 0, 1, nil, 0 ], # Basic Defend
# [ 3, 0, 2, 33, 4, 3 ], # Venom on no-state Actor
# [ 1, 1, 1, 1, 1 ] ] # Priority Heal on Enemy
It seems the trigger ID is missing so it should look like this:
Code:
# Rate Prio Trig Type Skil Targ Stat
# ==== ==== ==== ==== ==== ==== ====
MY_EXAMPLE = [ [ 5, 0, 1, 0, nil, 0 ], # Random melee attack
[ 3, 0, 1, 1, nil, 0 ], # Basic Defend
[ 3, 0, 1, 2, 33, 4, 3 ], # Venom on no-state Actor
[ 1, 1, 1, 1, 1, 1 ] ] # Priority Heal on Enemy
Please correct me If I'm wrong here^^