CambAutohealer (script)

From Elanthipedia
Jump to navigation Jump to search
CambAutohealer (script)
Category utility,Empath
Front-end Wizard
Author Peter Souza


Many thanks to Peter Souza for creating this script years ago that so many of us use

Like other autohealer scripts this will only heal what wounds it 'sees'. I usually ran an internal heal script and ate hisan before running this, but it will teach magical devices nicely. You will probably have to edit the cambrinth item, mine uses a cambrinth rose.

# Empath auto-healing script (v1.07)     


#
#
#  AutoHealer.CMD
#
#  Full self-healing script for empaths -- heals all visible injuries.
#
#
#  Version:       1.07
#
#  Requirements:  Empath has all four primary healing spells (EWH, ESH, IWH, ISH)
#                 Empath can harness mana (head/nerve injuries aren't too severe)
#
#  Parameters:    none
#
#                 For example:  .AutoHealer
#
#
#
#  Credits:       Peter Souza IV
#                 psouza4@yahoo.com
#
#                 Original version:  May 25, 2001 Peter Souza IV (drConnect)
#                 Revised:           Jul  9, 2001 Peter Souza IV (drConnect)
#                 Revised:           ?            Mike           (The Wizard adaption)
#                 Revised:           Nov  9, 2001 Peter Souza IV (The Wizard)
#                 Revised:           Nov 10, 2001 Peter Souza IV (The Wizard)
#                 Revised:           Nov 11, 2001 Peter Souza IV (The Wizard)
#                 www.zinious.com
#
#



################
#  CODE BEGIN  #
################
put get my cam rose
GOTO CheckWounds

ResetScript:
COUNTER SET 0

TopOfScript:
pause 1
put RELEASE
#goto CheckFallenCrap1
goto checkmana

CheckFallenCrap1:
PAUSE 1
PUT SET DESC
WAITFOR Ok.
MATCH CheckFallenCrap2 Cool washed white walls compose
MATCH CheckFallenCrap2 this is the headquarters of the
MATCH CheckFallenCrap2 Soft colors of blue and gold cover the walls of 
MATCH CheckFallenCrap2 Pallets of clean rush-filled linens lie about
MATCH CheckFallenCrap2 A veritable forest of color explodes before you as the cobbled
match CheckFallenCrap2 Maple Tree, High Branch
MATCH UhOh1 You are dead
MATCH UhOh2 ressurrect
MATCH UhOh3 still stunned
MATCH CheckFallenCrap2 Encumbrance:
PUT LOOK
PUT ENC
MATCHWAIT

CheckFallenCrap2:
PAUSE 1
PUT SET DESC
WAITFOR Ok.
goto checkmana

EndOfScript:
pause 1
pause 3
echo  
echo ._____________________________________________________________
echo /
Echo |  FINISHED!
echo \_____________________________________________________________
echo /
echo |
echo |  Credits:
echo |      Peter Souza IV
echo |      psouza4@yahoo.com
echo |      www.zinious.com
echo | 
echo |  Revision history:
echo |          1.00  original version for drConnect (www.zinious.com)
echo |          1.01  bug fixes
echo |          1.02  more bug fixes
echo |          1.03  converted and adapted to The Wizard
echo |          1.04  improved performance and speed by using the COUNTER command to keep track of the current wound level
echo |          1.04  removed "woundlevel" messaging
echo |          1.04  made modifications to how the script senses if your wounds are really cleaned or not to fix a false "FINISHED" message
echo |          1.04  adjusted credits section
echo |          1.04  changed to use encumbrance as a default for MATCH tables instead of '[Script]', since it was causing the script to fail
echo |          1.05  removed debug messaging
echo |          1.05  added 'slight numbness to arms and legs'
echo |          1.06  added various external skin scars
echo |          1.06  added 'a blind right eye'
echo |          1.06  added 'a blind left eye'
echo |          1.06  forced the script to check general wound status first, in case you're already clean
echo |          1.07  added 'an ugly flesh stump for a left hand'
echo |          1.07  added 'an ugly flesh stump for a left arm'
echo |          1.07  added 'an ugly flesh stump for a left leg'
echo |          1.07  added 'an ugly flesh stump for a right hand'
echo |          1.07  added 'an ugly flesh stump for a right arm'
echo |          1.07  added 'an ugly flesh stump for a right leg'
echo |          1.07  fixed moderate internal right hand scars section (would pause forever)
echo |          1.07  added in messaging for each area the script heals
echo |          1.07  changed 'slight numbness in your fingers and toes' to 'numbness in your fingers and toes'
echo | 
echo \_____________________________________________________________
pause 2
put put my cam rose in my backpack
goto endofscript2

CheckMana:
pause

match woundlevel%c complete attunement
match woundlevel%c high attunement 
match woundlevel%c good attunement
match woundlevel%c intact
match woundlevel%c normal attunement 
match waitformana a quarter strength attunement 
match waitformana low attunement 
match waitformana low strength attunement
match waitformana no attunement 


put mana
matchwait

waitforMana:
put POWER
PAUSE 5
pause 10
match woundlevel%c normal attunement 
match waitformana  a quarter strength attunement 
match waitformana low attunement 
match waitformana low strength attunement
match waitformana no attunement 

put mana
matchwait

WoundLevel0:
pause
match INFECTION Your wounds are infected
match HHextscarLarge severe scarring and ugly gashes about the head
match HHextwouLarge cracked skull with deep slashes
match HHextwouMedium deep slashes and cuts about the head
match HHextwouMedium deep cuts about the head
match HHintwouSmall bruised head
match HREintscarLarge a blind right eye
match HLEintscarLarge a blind left eye
match HNERintscarSmall numbness in your fingers and toes
match HNERintwouSmall some minor twitching
match HHextscarLarge mangled and malformed head
match HNERintwouMedium severe twitching
match HHintwouMedium deeply bruised head
match HHintwouLarge badly bruised and swollen head
match HNERintwouLarge difficulty controlling actions
match HHintwouLarge ghastly bloated head with bleeding from the ears
match HHintwouLarge major swelling and bruising around the head
match HNERintwouLarge paralysis of the entire body
match HRAextwouMedium shattered right arm with gaping
match HLAextwouMedium shattered left arm with gaping
match HRLextwouMedium shattered right leg with gaping
match HLLextwouMedium shattered left leg with gaping
match HRHextwouMedium shattered right hand with gaping
match HLHextwouMedium shattered left hand with gaping
match HLEextwouLarge pulpy cavity for a left eye
match HREextwouLarge pulpy cavity for a left eye
match woundlevel1_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel1_next:
COUNTER ADD 1
WoundLevel1:
pause
match HLHextscarLarge an ugly flesh stump for a left hand
match HLAextscarLarge an ugly flesh stump for a left arm
match HLLextscarLarge an ugly flesh stump for a left leg
match HRHextscarLarge an ugly flesh stump for a right hand
match HRAextscarLarge an ugly flesh stump for a right arm
match HRLextscarLarge an ugly flesh stump for a right leg
match HRAextwouMedium broken right arm with gaping holes
match HLAextwouMedium broken left arm with gaping holes
match HRLextwouMedium broken right leg with gaping holes
match HLLextwouMedium broken left leg with gaping holes
match HRHextwouMedium broken right hand with gaping holes
match HLHextwouMedium broken left hand with gaping holes
match HCextwouMedium gaping holes in the chest area
match HAextwouMedium gaping holes in the abdomen
match HBextwouMedium shattered back with gaping wounds
match HNextwouMedium gaping holes in the neck
match HHextwouLarge cracked skull with deep slashes
match HLEextwouLarge bruised, swollen and shattered left eye
match HREextwouLarge bruised, swollen and shattered right eye
match woundlevel2_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel2_next:
COUNTER ADD 1
WoundLevel2:
pause
match HNERintwouLarge paralysis of the entire body
match HCintwouLarge severely swollen and deeply bruised chest area with ribs protruding out from the skin
match HAintwouLarge severely bloated and discolored abdomen
match HNintwouLarge severely swollen and deeply bruised neck with odd protrusions under the skin
match HREintwouMedium severely swollen, bruised and cloudy right eye
match HLEintwouMedium severely swollen, bruised and cloudy left eye
match HREintwouLarge severely swollen, bruised and blind right eye
match HLEintwouLarge severely swollen, bruised and blind left eye
match HHintwouLarge major swelling and bruising around the head
match HHintwouLarge ghastly bloated head with bleeding from the ears
match HRAintwouLarge severely swollen and deeply bruised right arm
match HLAintwouLarge severely swollen and deeply bruised left arm
match HRHintwouLarge severely swollen and deeply bruised right hand
match HLHintwouLarge severely swollen and deeply bruised left hand
match HRLintwouLarge severely swollen and deeply bruised right leg
match HLLintwouLarge severely swollen and deeply bruised left leg
match HRAintwouLarge severely swollen and shattered right arm
match HLAintwouLarge severely swollen and shattered left arm
match HRHintwouLarge severely swollen and shattered right hand
match HLHintwouLarge severely swollen and shattered left hand
match HRLintwouLarge severely swollen and shattered right leg
match HLLintwouLarge severely swollen and shattered left leg
match woundlevel3_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel3_next:
COUNTER ADD 1
WoundLevel3:
pause
match HNERintwouLarge difficulty controlling actions
match HBintwouMedium severely swollen and deeply bruised back
match HCintwouMedium severely swollen and deeply bruised chest
match HAintwouLarge severely bloated and discolored abdomen
match HNintwouMedium severely swollen and deeply bruised neck
match HREintwouMedium severely swollen, bruised and crossed right eye
match HLEintwouMedium severely swollen, bruised and crossed left eye
match HHintwouLarge badly bruised and swollen head
match HRAintwouMedium severely swollen and deeply bruised right arm
match HLAintwouMedium severely swollen and deeply bruised left arm
match HRHintwouMedium severely swollen and deeply bruised right hand
match HLHintwouMedium severely swollen and deeply bruised left hand
match HRLintwouMedium severely swollen and deeply bruised right leg
match HLLintwouMedium severely swollen and deeply bruised left leg
match woundlevel4_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel4_next:
COUNTER ADD 1
WoundLevel4:
pause
match HRAextwouMedium deep slashes across the right arm
match HLAextwouMedium deep slashes across the left arm
match HRLextwouMedium deep slashes across the right leg
match HLLextwouMedium deep slashes across the left leg
match HRHextwouMedium deep slashes across the right hand
match HLHextwouMedium deep slashes across the left hand
match HCextwouMedium deep slashes across the chest
match HAextwouMedium deep slashes across the abdomen
match HBextwouMedium deep slashes across the back
match HNextwouMedium deep slashes across the neck
match HHextwouMedium deep slashes and cuts about the head
match HLEextwouMedium bruised, swollen and bleeding left eye
match HREextwouMedium bruised, swollen and bleeding right eye
match woundlevel5_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel5_next:
COUNTER ADD 1
WoundLevel5:
pause
match HBintwouMedium severely swollen and bruised back
match HCintwouMedium severely swollen and bruised chest
match HAintwouMedium severely swollen and bruised abdomen
match HNintwouMedium severely swollen and bruised neck
match HREintwouSmall severely swollen and bruised right eye
match HLEintwouSmall severely swollen and bruised left eye
match HHintwouMedium deeply bruised head
match HRAintwouSmall severely swollen and deeply bruised right arm
match HLAintwouSmall severely swollen and deeply bruised left arm
match HRHintwouSmall severely swollen and deeply bruised right hand
match HLHintwouSmall severely swollen and deeply bruised left hand
match HRLintwouSmall severely swollen and deeply bruised right leg
match HLLintwouSmall severely swollen and deeply bruised left leg
match woundlevel6_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel6_next:
COUNTER ADD 1
WoundLevel6:
pause
match HRAextwouSmall deep cuts across the right arm
match HLAextwouSmall deep cuts across the left arm
match HRLextwouSmall deep cuts across the right leg
match HLLextwouSmall deep cuts across the left leg
match HRHextwouSmall deep cuts across the right hand
match HLHextwouSmall deep cuts across the left hand
match HCextwouSmall deep cuts across the chest
match HAextwouSmall deep cuts across the abdomen
match HBextwouSmall deep cuts across the back
match HNextwouSmall deep cuts across the neck
match HHextwouMedium deep cuts about the head
match HLEextwouMedium bruised and swollen left eye
match HREextwouMedium bruised and swollen right eye
match woundlevel7_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel7_next:
COUNTER ADD 1
WoundLevel7:
pause
match HBintwouSmall minor swelling and bruising in the back
match HCintwouSmall minor swelling and bruising in the chest
match HAintwouSmall minor swelling and bruising in the abdomen
match HNintwouSmall minor swelling and bruising around the neck
match HREintwouSmall minor swelling and bruising around the right eye
match HLEintwouSmall minor swelling and bruising around the left eye
match HHintwouSmall bruised head
match HRAintwouSmall minor swelling and bruising around the right arm
match HLAintwouSmall minor swelling and bruising around the left arm
match HRHintwouSmall minor swelling and bruising around the right hand
match HLHintwouSmall minor swelling and bruising around the left hand
match HRLintwouSmall minor swelling and bruising around the right leg
match HLLintwouSmall minor swelling and bruising around the left leg
match woundlevel8_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel8_next:
COUNTER ADD 1
WoundLevel8:
pause
match HRAextwouSmall cuts and bruises about the right arm
match HLAextwouSmall cuts and bruises about the left arm
match HRLextwouSmall cuts and bruises about the right leg
match HLLextwouSmall cuts and bruises about the left leg
match HRHextwouSmall cuts and bruises about the right hand
match HLHextwouSmall cuts and bruises about the left hand
match HCextwouSmall cuts and bruises about the chest
match HAextwouSmall cuts and bruises about the abdomen
match HBextwouSmall cuts and bruises about the back
match HNextwouSmall cuts and bruises about the neck
match HHextwouSmall cuts and bruises about the head
match HLEextwouMedium black and blue left eye
match HREextwouMedium black and blue right eye
match woundlevel9_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel9_next:
COUNTER ADD 1
WoundLevel9:
pause
match HSkinextwouSmall cuts and bruises about the skin
match HSkinextwouSmall cuts and bruises to the skin
match HSkinextwouSmall tiny scratches to the skin
match HSkinextwouSmall minor abbrasions to the skin
match HRAextwouSmall tiny scratches to the right arm
match HLAextwouSmall tiny scratches to the left arm
match HRLextwouSmall tiny scratches to the right leg
match HLLextwouSmall tiny scratches to the left leg
match HRHextwouSmall tiny scratches to the right hand
match HLHextwouSmall tiny scratches to the left hand
match HCextwouSmall tiny scratches to the chest
match HAextwouSmall tiny scratches to the abdomen
match HBextwouSmall tiny scratches to the back
match HNextwouSmall tiny scratches to the neck
match HHextwouSmall tiny scratches to the head
match HLEextwouSmall tiny scratches to the left eye
match HREextwouSmall tiny scratches to the right eye
match woundlevel10_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel10_next:
COUNTER ADD 1
WoundLevel10:
pause
match HRAextwouSmall minor abrasions to the right arm
match HLAextwouSmall minor abrasions to the left arm
match HRLextwouSmall minor abrasions to the right leg
match HLLextwouSmall minor abrasions to the left leg
match HRHextwouSmall minor abrasions to the right hand
match HLHextwouSmall minor abrasions to the left hand
match HCextwouSmall minor abrasions to the chest
match HAextwouSmall minor abrasions to the abdomen
match HBextwouSmall minor abrasions to the back
match HNextwouSmall minor abrasions to the neck
match HHextwouSmall minor abrasions to the head
match HLEextwouSmall minor abrasions to the left eye
match HREextwouSmall minor abrasions to the right eye
match woundlevel11_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel11_next:
COUNTER ADD 1
WoundLevel11:
pause
match HCextscarLarge severely scarred, mangled and malformed chest area
match HAextscarLarge mostly non-existent abdomen filled with ugly chunks of scarred flesh
match HRAextscarLarge severely scarred, mangled and malformed right arm
match HLAextscarLarge severely scarred, mangled and malformed left arm
match HRHextscarLarge severely scarred, mangled and malformed right hand
match HLHextscarLarge severely scarred, mangled and malformed left hand
match HRLextscarLarge severely scarred, mangled and malformed right leg
match HLLextscarLarge severely scarred, mangled and malformed left leg
match HREextscarLarge painfully mangled and malformed right eye
match HLEextscarLarge painfully mangled and malformed left eye
match HREextscarLarge empty right eye socket overgrown with bits of odd shaped flesh
match HLEextscarLarge empty left eye socket overgrown with bits of odd shaped flesh
match woundlevel12_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel12_next:
COUNTER ADD 1
WoundLevel12:
pause
match HCextscarLarge severe scarring and chunks of flesh missing from the chest area
match HCextscarLarge severe scarring and chunks of flesh missing about the chest area
match HAextscarLarge severe scarring and chunks of flesh missing from the abdomen
match HBextscarLarge severe scarring and chunks of flesh missing from the back
match HHextscarLarge mangled and malformed head
match HNextscarLarge severe scarring and chunks of flesh missing from the neck
match HRAextscarLarge severe scarring and chunks of flesh missing from the right arm
match HLAextscarLarge severe scarring and chunks of flesh missing from the left arm
match HRHextscarLarge severe scarring and chunks of flesh missing from the right hand
match HLHextscarLarge severe scarring and chunks of flesh missing from the left hand
match HRLextscarLarge severe scarring and chunks of flesh missing from the right leg
match HLLextscarLarge severe scarring and chunks of flesh missing from the left leg
match HREextscarLarge punctured and shriveled right eye
match HLEextscarLarge punctured and shriveled left eye
match woundlevel13_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel13_next:
COUNTER ADD 1
WoundLevel13:
pause
match HCextscarLarge severe scarring and ugly gashes about the chest
match HAextscarLarge severe scarring and ugly gashes about the abdomen
match HBextscarLarge severe scarring and ugly gashes about the back
match HHextscarLarge severe scarring and ugly gashes about the head
match HNextscarLarge severe scarring and ugly gashes about the neck
match HRAextscarMedium severe scarring and ugly gashes about the right arm
match HLAextscarMedium severe scarring and ugly gashes about the left arm
match HRHextscarMedium severe scarring and ugly gashes about the right hand
match HLHextscarMedium severe scarring and ugly gashes about the left hand
match HRLextscarMedium severe scarring and ugly gashes about the right leg
match HLLextscarMedium severe scarring and ugly gashes about the left leg
match HREextscarLarge deeply scarred gashes across the right eye
match HLEextscarLarge deeply scarred gashes across the left eye
match woundlevel14_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel14_next:
COUNTER ADD 1
WoundLevel14:
pause
match HCextscarMedium severe scarring along the chest
match HAextscarMedium severe scarring along the abdomen
match HBextscarMedium severe scarring along the back
match HHextscarMedium severe scarring about the head
match HNextscarMedium severe scarring along the neck
match HRAextscarMedium severe scarring along the right arm
match HLAextscarMedium severe scarring along the left arm
match HRHextscarMedium severe scarring along the right hand
match HLHextscarMedium severe scarring along the left hand
match HRLextscarMedium severe scarring along the right leg
match HLLextscarMedium severe scarring along the left leg
match HREextscarMedium severe scarring across the right eye
match HLEextscarMedium severe scarring across the left eye
match HSkinextscarMedium severe scarring across the skin
match HSkinextscarMedium severe scarring along the skin
match woundlevel15_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel15_next:
COUNTER ADD 1
WoundLevel15:
pause
match HNERintscarMedium numbness in your arms and legs
match HCintscarMedium constant twitching in the chest and difficulty breathing
match HCintscarMedium painful chest area and difficulty getting a breath without pain
match HAintscarMedium somewhat emaciated look
match HBintscarMedium constant twitching in the back and difficulty moving in general
match HHintscarMedium constant twitch on the forehead and a painful headache
match HNintscarMedium paralyzed neck
match HRAintscarMedium paralyzed right arm
match HLAintscarMedium paralyzed left arm
match HRHintscarMedium paralyzed right hand
match HLHintscarMedium paralyzed left hand
match HRLintscarMedium paralyzed right leg
match HLLintscarMedium paralyzed left leg
match HREintscarMedium clouded right eye
match HLEintscarMedium clouded left eye
match woundlevel16_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel16_next:
COUNTER ADD 1
WoundLevel16:
pause
match HCextscarSmall minor scarring along the chest
match HAextscarSmall minor scarring along the abdomen
match HBextscarSmall minor scarring along the back
match HHextscarSmall minor scars about the head
match HNextscarSmall minor scarring along the neck
match HRAextscarSmall minor scarring along the right arm
match HLAextscarSmall minor scarring along the left arm
match HRHextscarSmall minor scarring along the right hand
match HLHextscarSmall minor scarring along the left hand
match HRLextscarSmall minor scarring along the right leg
match HLLextscarSmall minor scarring along the left leg
match HREextscarSmall minor scars across the right eye
match HLEextscarSmall minor scars across the left eye
match HSkinextscarSmall minor scars across the skin
match HSkinextscarSmall minor scars along the skin
match woundlevel17_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel17_next:
COUNTER ADD 1
WoundLevel17:
pause
match HCextscarSmall some tiny scars across the chest
match HAextscarSmall some tiny scars across the abdomen
match HBextscarSmall some tiny scars across the back
match HHextscarSmall some tiny scars across the head
match HNextscarSmall some tiny scars across the neck
match HRAextscarSmall some tiny scars across the right arm
match HLAextscarSmall some tiny scars across the left arm
match HRHextscarSmall some tiny scars across the right hand
match HLHextscarSmall some tiny scars across the left hand
match HRLextscarSmall some tiny scars across the right leg
match HLLextscarSmall some tiny scars across the left leg
match HREextscarSmall some tiny scars across the right eye
match HLEextscarSmall some tiny scars across the left eye
match HSkinextscarSmall some tiny scars along the skin
match HSkinextscarSmall some tiny scars across the skin
match woundlevel18_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel18_next:
COUNTER ADD 1
WoundLevel18:
pause
match HCextscarSmall few nearly invisible scars along the chest
match HAextscarSmall few nearly invisible scars along the abdomen
match HBextscarSmall few nearly invisible scars along the back
match HHextscarSmall few nearly invisible scars along the head
match HNextscarSmall few nearly invisible scars along the neck
match HRAextscarSmall few nearly invisible scars along the right arm
match HLAextscarSmall few nearly invisible scars along the left arm
match HRHextscarSmall few nearly invisible scars along the right hand
match HLHextscarSmall few nearly invisible scars along the left hand
match HRLextscarSmall few nearly invisible scars along the right leg
match HLLextscarSmall few nearly invisible scars along the left leg
match HREextscarSmall few nearly invisible scars along the right eye
match HLEextscarSmall few nearly invisible scars along the left eye
match HSkinextscarSmall few nearly invisible scars along the skin
match woundlevel19_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel19_next:
COUNTER ADD 1
WoundLevel19:
pause
match HCintscarSmall constant twitching in the chest
match HAintscarSmall constant twitching in the abdomen
match HBintscarSmall constant twitching in the back
match HHintscarSmall constant twitch on the forehead
match HNintscarSmall constant twitching in the neck
match HRAintscarSmall constant twitching in the right arm
match HLAintscarSmall constant twitching in the left arm
match HRHintscarSmall constant twitching in the right hand
match HLHintscarSmall constant twitching in the left hand
match HRLintscarSmall constant twitching in the right leg
match HLLintscarSmall constant twitching in the left leg
match HREintscarSmall constant twitching in the right eye
match HLEintscarSmall constant twitching in the left eye
match woundlevel20_next Encumbrance:
put HEALTH
put ENC
matchwait

WoundLevel20_next:
COUNTER ADD 1
WoundLevel20:
pause
match HCintscarSmall occasional twitching in the chest
match HAintscarSmall occasional twitching in the abdomen
match HBintscarSmall occasional twitching in the back
match HHintscarSmall occasional twitch on the forehead
match HNintscarSmall occasional twitching in the neck
match HRAintscarSmall occasional twitching in the right arm
match HLAintscarSmall occasional twitching in the left arm
match HRHintscarSmall occasional twitching in the right hand
match HLHintscarSmall occasional twitching in the left hand
match HRLintscarSmall occasional twitching in the right leg
match HLLintscarSmall occasional twitching in the left leg
match HREintscarSmall occasional twitching in the right eye
match HLEintscarSmall occasional twitching in the left eye
match woundlevel21 Encumbrance:
put HEALTH
put ENC
matchwait

CheckWounds:
woundlevel21:
echo ****   Checkwounds *****
pause
match ResetScript You have a 
match ResetScript You have an 
match ResetScript You have some 
match EndOfScript You have no significant injuries.
match ResetScript Encumbrance:
put HEALTH
put ENC
matchwait

EndOfScript2:
put EXP
#pause 30
#goto EndOfScript2
goto END

HRAextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right arm wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST RIGHT ARM
goto TopOfScript

HLAextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left arm wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST LEFT ARM
goto TopOfScript

HRLextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right leg wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST RIGHT LEG
goto TopOfScript

HLLextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left leg wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST LEFT LEG
goto TopOfScript

HRHextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right hand wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST RIGHT HAND
goto TopOfScript

HLHextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left hand wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST LEFT HAND
goto TopOfScript

HCextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor chest wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST CHEST
goto TopOfScript

HAextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor abdomen wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST ABDOMEN
goto TopOfScript

HBextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor back wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST BACK
goto TopOfScript

HHextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor head wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST HEAD
goto TopOfScript

HNextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor neck wound
ECHO ****************
pause 1
put PREP EWH 3
pause 4
put CAST NECK
goto TopOfScript

HREextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right eye wound
ECHO ****************
pause 1
put PREP EWH 4
pause 4
put CAST RIGHT EYE
goto TopOfScript

HLEextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left eye wound
ECHO ****************
pause 1
put PREP EWH 4
pause 4
put CAST LEFT EYE
goto TopOfScript

HRAextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right arm wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT ARM
goto TopOfScript

HLAextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left arm wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT ARM
goto TopOfScript

HRLextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right leg wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT LEG
goto TopOfScript

HLLextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left leg wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT LEG
goto TopOfScript

HRHextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right hand wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT HAND
goto TopOfScript

HLHextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left hand wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT HAND
goto TopOfScript

HCextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate chest wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST CHEST
goto TopOfScript

HAextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate abdomen wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST ABDOMEN
goto TopOfScript

HBextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate back wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST BACK
goto TopOfScript

HNextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate neck wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST NECK
goto TopOfScript

HHextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate head wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST HEAD
goto TopOfScript

HREextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right eye wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT EYE
goto TopOfScript

HLEextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left eye wound
ECHO ****************
pause 1
put PREP EWH 1
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT EYE
goto TopOfScript

HHextwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major head wound
ECHO ****************
pause 1
put PREP EWH 3
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST HEAD
goto TopOfScript

HREextwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major right eye wound
ECHO ****************
pause 1
put PREP EWH 3
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT EYE
goto TopOfScript

HLEextwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major left eye wound
ECHO ****************
pause 1
put PREP EWH 3
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT EYE
goto TopOfScript

HRAintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal right arm wound
ECHO ****************
pause 1
put PREP IWH 6
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT ARM
goto TopOfScript

HLAintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal left arm wound
ECHO ****************
pause 1
put PREP IWH 6
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT ARM
goto TopOfScript

HRLintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal right leg wound
ECHO ****************
pause 1
put PREP IWH 6
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT LEG
goto TopOfScript

HLLintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal left leg wound
ECHO ****************
pause 1
put PREP IWH 6
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT LEG
goto TopOfScript

HRHintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal right hand wound
ECHO ****************
pause 1
put PREP IWH 6
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT HAND
goto TopOfScript

HLHintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal left hand wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT HAND
goto TopOfScript

HHintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal head wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST HEAD
goto TopOfScript

HREintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal right eye wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT EYE
goto TopOfScript

HLEintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal left eye wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT EYE
goto TopOfScript

HNintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal neck wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST NECK
goto TopOfScript

HCintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal chest wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST CHEST
goto TopOfScript

HAintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal abdomen wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST ABDOMEN
goto TopOfScript

HBintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor internal back wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST BACK
goto TopOfScript

HNERintwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor nerve damage
ECHO ****************
put PREP IWH 10
put charge my rose 4
pause
put focus my rose
pause
put CAST NERVE
goto TopOfScript

HRAextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right arm scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT ARM
goto TopOfScript

HLAextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left arm scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT ARM
goto TopOfScript

HRHextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right hand scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT HAND
goto TopOfScript

HLHextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left hand scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT HAND
goto TopOfScript

HRLextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right leg scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT LEG
goto TopOfScript

HLLextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left leg scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT LEG
goto TopOfScript

HHextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor head scar
ECHO ****************
put PREP ESH 9
pause 2
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST HEAD
goto TopOfScript

HNextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor neck scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST NECK
goto TopOfScript

HCextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor chest scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST CHEST
goto TopOfScript

HAextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor abdomen scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST ABDOMEN
goto TopOfScript

HBextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor back scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST BACK
goto TopOfScript

HLEextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left eye scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT EYE
goto TopOfScript

HREextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right eye scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT EYE
goto TopOfScript

HRAextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right arm scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT ARM
goto TopOfScript

HLAextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left arm scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT ARM
goto TopOfScript

HRHextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right hand scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT HAND
goto TopOfScript

HLHextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left hand scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT HAND
goto TopOfScript

HRLextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right leg scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT LEG
goto TopOfScript

HLLextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left leg scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT LEG
goto TopOfScript

HHextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate head scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST HEAD
goto TopOfScript

HNextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate neck scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST NECK
goto TopOfScript

HCextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate chest scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST CHEST
goto TopOfScript

HAextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate abdomen scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST ABDOMEN
goto TopOfScript

HBextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate back scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST BACK
goto TopOfScript

HLEextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left eye scar
ECHO ****************
put PREP ESH 11
pause 2
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT EYE
goto TopOfScript

HREextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right eye scar
ECHO ****************
put PREP ESH 11
pause 2
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT EYE
goto TopOfScript

HRAextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major right arm scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT ARM
goto TopOfScript

HLAextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major left arm scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT ARM
goto TopOfScript

HRHextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major right hand scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT HAND
goto TopOfScript

HLHextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major left hand scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT HAND
goto TopOfScript

HRLextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major right leg scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT LEG
goto TopOfScript

HLLextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major left leg scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT LEG
goto TopOfScript

HHextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major head scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST HEAD
goto TopOfScript

HNextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major neck scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST NECK
goto TopOfScript

HCextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major chest scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST CHEST
goto TopOfScript

HAextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major abdomen scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST ABDOMEN
goto TopOfScript

HBextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major back scar
ECHO ****************
put PREP ESH 10
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST BACK
goto TopOfScript

HLEextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major left eye scar
ECHO ****************
put PREP ESH 11
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST LEFT EYE
goto TopOfScript

HREextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major right eye scar
ECHO ****************
put PREP ESH 11
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST RIGHT EYE
goto TopOfScript


HRAintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal right arm wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT ARM
goto TopOfScript

HLAintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal left arm wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT ARM
goto TopOfScript

HRLintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal right leg wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT LEG
goto TopOfScript

HLLintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal left leg wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT LEG
goto TopOfScript

HRHintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal right hand wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT HAND
goto TopOfScript

HLHintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal left hand wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT HAND
goto TopOfScript

HHintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal head wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST HEAD
goto TopOfScript

HREintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal right eye wound
ECHO ****************
put PREP IWH 9
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT EYE
goto TopOfScript

HLEintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal left eye wound
ECHO ****************
put PREP IWH 9
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT EYE
goto TopOfScript

HNintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal neck wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST NECK
goto TopOfScript

HCintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal chest wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST CHEST
goto TopOfScript

HAintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal abdomen wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST ABDOMEN
goto TopOfScript

HBintwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate internal back wound
ECHO ****************
put PREP IWH 6
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST BACK
goto TopOfScript

HNERintwouMedium:
put PREP IWH 12
waitfor You feel fully prepared
put CAST NERVE
goto TopOfScript

HRAintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal right arm wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT ARM
goto TopOfScript

HLAintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal left arm wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT ARM
goto TopOfScript

HRLintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal right leg wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT LEG
goto TopOfScript

HLLintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal left leg wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT LEG
goto TopOfScript

HRHintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal right hand wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT HAND
goto TopOfScript

HLHintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal left hand wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT HAND
goto TopOfScript

HHintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal head wound
ECHO ****************
put PREP IWH 10
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST HEAD
goto TopOfScript

HREintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal right eye wound
ECHO ****************
put PREP IWH 12
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST RIGHT EYE
goto TopOfScript

HLEintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal left eye wound
ECHO ****************
put PREP IWH 12
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST LEFT EYE
goto TopOfScript

HNintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal neck wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST NECK
goto TopOfScript

HCintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal chest wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST CHEST
goto TopOfScript

HAintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal abdomen wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST ABDOMEN
goto TopOfScript

HBintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major internal back wound
ECHO ****************
put PREP IWH 8
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST BACK
goto TopOfScript

HNERintwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major nerve damage
ECHO ****************
put PREP IWH 15
waitfor You feel fully prepared
put CAST NERVE
goto TopOfScript

HRAintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right arm twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST RIGHT ARM
goto TopOfScript

HLAintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left arm twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST LEFT ARM
goto TopOfScript

HRHintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right hand twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST RIGHT HAND
goto TopOfScript

HLHintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left hand twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST LEFT HAND
goto TopOfScript

HRLintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right leg twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST RIGHT LEG
goto TopOfScript

HLLintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left leg twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST LEFT LEG
goto TopOfScript

HHintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor head twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST HEAD
goto TopOfScript

HNintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor neck twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST NECK
goto TopOfScript

HCintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor chest twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST CHEST
goto TopOfScript

HAintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor abdomen twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST ABDOMEN
goto TopOfScript

HBintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor back twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST BACK
goto TopOfScript

HLEintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor left eye twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST LEFT EYE
goto TopOfScript

HREintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor right eye twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST RIGHT EYE
goto TopOfScript

HRAintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right arm twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST RIGHT ARM
goto TopOfScript

HLAintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left arm twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST LEFT ARM
goto TopOfScript

HRHintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right hand twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST RIGHT HAND
goto TopOfScript

HLHintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right arm twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST LEFT HAND
goto TopOfScript

HRLintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right leg twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST RIGHT LEG
goto TopOfScript

HLLintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left arm twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST LEFT LEG
goto TopOfScript

HHintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate head twitching
ECHO ****************
put PREP ISH 15
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST HEAD
goto TopOfScript

HNintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate neck twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST NECK
goto TopOfScript

HCintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate chest twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST CHEST
goto TopOfScript

HAintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate abdomen twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST ABDOMEN
goto TopOfScript

HBintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate back twitching
ECHO ****************
put PREP ISH 12
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST BACK
goto TopOfScript

HLEintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate left eye twitching
ECHO ****************
put PREP ISH 15
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST LEFT EYE
goto TopOfScript

HREintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate right eye twitching
ECHO ****************
put PREP ISH 15
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause
put CAST RIGHT EYE
goto TopOfScript

HNERintscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor nerve scarring
ECHO ****************
put PREP ISH 15
waitfor You feel fully prepared
put CAST NERVE
goto TopOfScript

HNERintscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate nerve scarring
ECHO ****************
put PREP ISH 18
waitfor You feel fully prepared
put CAST NERVE
goto TopOfScript

HNERintscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major nerve scarring
ECHO ****************
put PREP ISH 22
waitfor You feel fully prepared
put CAST NERVE
goto TopOfScript

HSkinextscarSmall:
ECHO ****************
ECHO [AutoHealer] healing minor skin scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST SKIN
goto TopOfScript

HSkinextscarMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate skin scar
ECHO ****************
put PREP ESH 9
pause 2
put charge my rose 3
pause 1
pause
put charge my rose 3
pause 1
pause
put focus my rose
pause 1
pause
put CAST SKIN
goto TopOfScript

HSkinextscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major skin scar
ECHO ****************
put PREP ESH 11
pause 2
put charge my rose 4
pause 1
pause
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST SKIN
goto TopOfScript

HREintscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major right eye twitching
ECHO ****************
put PREP ISH 15
pause 2
put charge my rose 4
pause 1
pause
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST SKIN
goto TopOfScript

HLEintscarLarge:
ECHO ****************
ECHO [AutoHealer] healing major left eye twitching
ECHO ****************
put PREP ISH 15
pause 2
put charge my rose 4
pause 1
pause
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST SKIN
goto TopOfScript



HSkinextwouSmall:
ECHO ****************
ECHO [AutoHealer] healing minor skin wound
ECHO ****************
put PREP EWH 1
pause 2
put charge my rose 4
pause 1
pause
put focus my rose
pause 1
pause
put CAST SKIN
goto TopOfScript

HSkinextwouMedium:
ECHO ****************
ECHO [AutoHealer] healing moderate skin scar
ECHO ****************
put PREP EWH 1
pause 1
put charge my rose 3
pause
put charge my rose 3
pause
put focus my rose
pause
put CAST SKIN
goto TopOfScript

HSkinextwouLarge:
ECHO ****************
ECHO [AutoHealer] healing major skin scar
ECHO ****************
put PREP EWH 3
pause 1
put charge my rose 4
pause
put charge my rose 4
pause
put focus my rose
pause
put CAST SKIN
goto TopOfScript

INFECTION:
ECHO ****************
ECHO [AutoHealer] healing infection
ECHO ****************
put PREP CD 12
pause 1
put charge my rose 4
pause
put focus my rose
pause
put CAST 
goto TopOfScript

labelError:
ECHO  
ECHO  
ECHO labelError
ECHO  
GOTO UhOhMain

UhOh1:
ECHO  
ECHO  
ECHO UhOh1
ECHO  
GOTO UhOhMain

UhOh2:
ECHO  
ECHO  
ECHO UhOh2
ECHO  
GOTO UhOhMain

UhOh3:
ECHO  
ECHO  
ECHO UhOh3
ECHO  
GOTO UhOhMain

UhOh4:
ECHO  
ECHO  
ECHO UhOh4
ECHO  
GOTO UhOhMain

UhOhMain:
ECHO  
ECHO  
ECHO  
ECHO  
ECHO  
ECHO  
ECHO  
ECHO  
ECHO **********************
ECHO ******** FUCK ********
ECHO **********************
ECHO  
PUT QUIT
PAUSE 1
PUT QUIT
PAUSE 1
PUT QUIT
PAUSE 1
PUT QUIT
PAUSE 1
PUT QUIT
PAUSE 1
PUT QUIT
PAUSE 1
PUT QUIT
PAUSE 1
PUT QUIT
PAUSE 1
PUT QUIT
PAUSE 1
EXIT

################
#   CODE END   #
################
END: