Back to "healing" skill

Yogurt's auto heal by _yogurt

Description: This 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.

// Rapid Bandage, Cure, Greater heal and trap loop script // created by: [-_-] Yogurt // updated: 19 August 2024 // now supports potion satchel @setvar! globalTimeout 650 while not dead if hidden continue endif 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 wait globalTimeout dclick PotsHeal wait globalTimeout endif endif endif endwhile