Yogurt's auto heal by _yogurt
Description from the author:
// Rapid bandaging loop script
// created by: Yogurt
// updated: 16 December 2024
@setvar! globalTimeout 650
if not dead
if findtype "clean bandage%s%" backpack
if bandaging = 0
if hp != maxhp
hotkey 'Bandage self'
wait globalTimeout
endif
endif
endif
if paralyzed
overhead 'Paralyzed!' 38
if findtype "pouch" backpack 38 any any
say '[pouch'
wait globalTimeout
endif
endif
if poisoned
if findtype "Orange Potion" self
wait globalTimeout
overhead 'Drinking cure!' 48
potion "cure"
wait globalTimeout
endif
endif
if hp < 25
if findtype 3852 self as PotsHeal
getlabel PotsHeal LabelPotsHeal
if 'next usable' in LabelPotsHeal
sysmsg 'Unable to use Heal Potion Yet!' 33
else
overhead 'Drinking heal!' 68
dclick PotsHeal
wait globalTimeout
endif
endif
endif
else
pause 1000
endif
loopThis script helps you maintain your health efficiently. Here's what it does:
- Immediately applies a bandage when needed.
- Drinks a health potion when your health is low.
- Drinks a cure potion when you are poisoned.
- Triggers a trapped pouch when you are paralyzed by PKs.
The script responds quickly and keeps you stay in top condition.