PDA

View Full Version : Scar healdown help



GSIVPlayer
06-13-2008, 10:59 PM
Picked up this script from somone on Psinet.. was wondering if perhaps you can help me edit it a bit, i dont have a clue how.. It needs a mana check, and it also needs to cure head/nerve scars first.. or atleast all the worst scars down to 1 then wherever is clever.. would love if somone could edit this up a bit for me.. :thanx:

#scars.Cmd
Main:

put health

match head fac
match head your head
match body eye
match limb arm
match limb hand
match limb leg
match head neck
match body your chest
match body your abdom
match body your back
match nerves muscle
match nerves speech
match done You seem to be in one piece.
matchwait

limb:
echo
echo -- Limb Scar Detected --
echo
put prep 1111
put cure
wait 3
goto main

head:
echo
echo -- Head/Neck Scar Detected --
echo
put prep 1113
put cure
wait 3
goto main

body:
echo
echo -- Body/Eye Scar Detected --
echo
put prep 1114
put cure
wait 3
goto main

nerves:
echo
echo -- Nerve Scar Detected --
echo
put prep 1112
put cure
wait 3
goto main

done:
echo
echo -- Stop Smoking Poth Grass You Healthy Person --
echo
exit

Woden
06-14-2008, 05:05 AM
I don't know anything about the mana costs for healing, so I can't help you with the mana check (if that's even possible without Lich, I dunno), but to make it heal head and nerves first, just put those matches first in the list.