|
Humpy Newbie
Joined: 17 Sep 2005 Posts: 1
|
Posted: Sat Sep 17, 2005 7:26 am
End Fight Buff/Debuff |
I'm not very good at this stuff but I do understand at least some of the scripting basics. What I am trying to attempt is to collect data during the fight and then buff/debuff accordingly w/o the spells running over themselves. I know there has got to be a better way to do this PLEASE HELP! Here is what I have thus far:
Code: |
#CLASS {Test}
#TRIGGER {You wish that your wounds would stop BLEEDING so much!} {
heal
heal
heal
}
#CLASS 0
#CLASS {Test|Poison}
#TRIGGER {You feel very sick.} {
#T+ EndFightPoison
#T- OutofFightSick
#T- EndFightDetection
#T+ PoisonBeforeDetection
#T- EndFightCurse
#T+ PoisonBeforeCurse
}
#TRIGGER {You feel less sick.} {#T- EndFightPoison}
#TRIGGER {Your gain is:} {#T- EndFightPoison}
#CLASS 0
#CLASS {Test|Poison|EndFightPoison}
#TRIGGER {is DEAD!!} {poison}
#TRIGGER {A warm feeling runs through your body.} {
#T- EndFightPoison
#T+ OutofFightSick
wear kas
wear kas
}
#CLASS 0
#CLASS {Test|Poison|OutofFightSick}
#TRIGGER {You shiver and suffer.} {poison}
#CLASS 0
#CLASS {Test|Recall}
#TRIGGER {The weight of your curse is lifted.} {
recall
#T- Recall
}
#CLASS 0
#CLASS {Test|Curse}
#TRIGGER {You feel unclean.} {#T+ EndFightCurse}
#TRIGGER {The curse wears off.} {
#T- EndFightCurse
#T- PoisonBeforeCurse
#T- DetectionBeforeCurse
}
#TRIGGER {For some strange reason... the God's forbid you from recalling.} {
#T+ Recall
curse
}
#TRIGGER {Your gain is:} {#T- EndFightCurse}
#CLASS 0
#CLASS {Test|Curse|EndfightCurse}
#TRIGGER {is DEAD!!} {curse}
#TRIGGER {The weight of your curse is lifted.} {#T- EndFightCurse}
#CLASS 0
#CLASS {Test|Curse|PoisonBeforeCurse}
#TRIGGER {A warm feeling runs through your body.} {
curse
#T- PoisonBeforeCurse
}
#CLASS 0
#CLASS {Test|Curse|DetectionBeforeCurse}
#TRIGGER {Your eyes fixate as they gain the ability to see the unseen.} {
curse
#T- DetectionBeforeCurse
}
#CLASS 0
#CLASS {Test|Detection}
#TRIGGER {You no longer see invisible objects.} {
#T+ EndFightDetection
#T- EndFightCurse
#T+ DetectionBeforeCurse
}
#TRIGGER {Your eyes fixate as they gain the ability to see the unseen.} {#T- EndFightDetection}
#TRIGGER {Your gain is:} {#T- EndFightDetection}
#CLASS 0
#CLASS {Test|Detection|EndFightDetection}
#TRIGGER {is DEAD!!} {detect}
#CLASS 0
#CLASS {Test|Detection|PoisonBeforeDetection}
#TRIGGER {A warm feeling runs through your body.} {
detect
#T- PoisonBeforeDetection
}
#CLASS 0
|
|
|
|
|
billaben Wanderer
Joined: 02 Sep 2005 Posts: 60
|
Posted: Wed Sep 21, 2005 4:52 pm |
That's confusing. Could I see a short example of this battlespam and an explanation of what you're trying to do with it ?
|
|
|
|
|
|