Created: 4 days ago on 05/20/2025, 03:39:03 PM
FileType: No file type provided
Size: 804
Category: No category provided
Skills: No skills provided
Hotkey: No hotkey provided
Tags: No tags provided
healingEnabled = true
healingActive = false
lastHealTime = 0
healCooldown = 12500
while true do
local currentTime = os.time() * 1000
if healingEnabled and Player.Hits < Player.HitsMax and not healingActive then
if Player.UseObjectByType(0xE21) then
if Targeting.WaitForTarget(5000) then
Targeting.TargetSelf()
healingActive = true
lastHealTime = currentTime
end
end
end
if healingActive and (currentTime - lastHealTime >= healCooldown) then
healingActive = false
end
Pause(50)
end