lvlorph Beginner
Joined: 26 Nov 2001 Posts: 20 Location: USA
|
Posted: Fri Dec 07, 2001 6:02 am
Dueling Script |
I posted earlier and got some help. I'm trying to set up a dueling script.
Alright, here's what I've got. But still, it seems to fire when it's not supposed to at times. And further, it's a bit slow.. Any suggestions?
#CLASS {Fight} {disable}
#VAR enemy {Jakian}
#TRIGGER {(%w) has arrived.} {#IF (%w == @enemy) {trip @enemy} {#NOOP}} "" {disable}
#TRIGGER {(%w) * the * is standing here.} {#IF (%w == @enemy) {kick @enemy} {#NOOP}} "" {disable}
#TRIGGER {(%w) panics, and attempts to flee!} {#IF (%w == @enemy) {
hunt @enemy
hunt @enemy
kick @enemy
} {#NOOP}} "" {disable}
#CLASS 0 |
|