Caels
02-16-2007, 05:01 PM
This took me a few days to perfect, but it seems to work flawlessly for the moment.
In zMud, create new alias:
#var xferCheck 0
appraise %1
#while (@xferCheck = 0) {;}
#if (@targetInjuries != "no apparent wounds" & @targetInjuries != "no apparent injuries") {
#forall @bodyParts {
#var healPart %replace( %i, ".", " ")
#var xferMatch %match( @targetInjuries, @healPart)
#if (@xferMatch) {
#if (@healPart = "twitching" | @healPart = "convuls" | @healPart = "spasm") {transfer %1 nerve} {transfer %1 @healpart}
#wait
}
#var healPart ""
}
}
Then create a new trigger:
#TRIGGER {You take a quick appraisal of &Target and find that {she|he} has &{targetInjuries}.} {#var xferCheck 1}
We also need a variable to store the injured body parts we're searching for.
#VAR bodyParts {left.arm|right.arm|left.leg|right.leg|left.hand|r ight.hand|left.eye|right.eye|abdom|chest|back|neck |head|twitching|convuls|spasm}
The other variables in this script should create themselves the first time they are used. That's it!
This script works perfectly as long as you are high enough level to handle the wounds. If you can't handle the wounds, it will try once, then skip over it.
Lemme know if this helps anyone. I know that not many people use zMud, but it is a powerful scripting front end.
In zMud, create new alias:
#var xferCheck 0
appraise %1
#while (@xferCheck = 0) {;}
#if (@targetInjuries != "no apparent wounds" & @targetInjuries != "no apparent injuries") {
#forall @bodyParts {
#var healPart %replace( %i, ".", " ")
#var xferMatch %match( @targetInjuries, @healPart)
#if (@xferMatch) {
#if (@healPart = "twitching" | @healPart = "convuls" | @healPart = "spasm") {transfer %1 nerve} {transfer %1 @healpart}
#wait
}
#var healPart ""
}
}
Then create a new trigger:
#TRIGGER {You take a quick appraisal of &Target and find that {she|he} has &{targetInjuries}.} {#var xferCheck 1}
We also need a variable to store the injured body parts we're searching for.
#VAR bodyParts {left.arm|right.arm|left.leg|right.leg|left.hand|r ight.hand|left.eye|right.eye|abdom|chest|back|neck |head|twitching|convuls|spasm}
The other variables in this script should create themselves the first time they are used. That's it!
This script works perfectly as long as you are high enough level to handle the wounds. If you can't handle the wounds, it will try once, then skip over it.
Lemme know if this helps anyone. I know that not many people use zMud, but it is a powerful scripting front end.