Created: 5 days ago on 05/20/2025, 12:09:04 AMUpdated: 2 days ago on 05/22/2025, 12:28:39 PM
FileType: No file type provided
Size: 696
Category: Utility
Skills: Healing
Hotkey: No hotkey provided
Tags: pvp,pvm
Description: The number 11 , is the seconds to heal, change it based on your dex
The number 70 is the green color, you can experiment changing it if you want a different color.
local seconds = 11
Messages.Print('Bandage looping started')
while not Player.IsDead do
if Player.Hits < Player.HitsMax then
bandage = Items.FindByType(3617)
if bandage == nil then
Messages.Overhead('Out of bandages!', 32, Player.Serial)
else
Player.UseObject(bandage.Serial)
if Targeting.WaitForTarget(2000) then
Targeting.TargetSelf()
end
for i = seconds, 1, -1 do
local message = i .. "s"
Messages.Overhead(message, 70, Player.Serial)
Pause(1000)
end
end
end
Pause(100)
end