Created: 5 months ago on 06/07/2025, 12:43:32 AMUpdated: 5 months ago on 06/07/2025, 12:44:16 AM
Description: (im a noob at scripting)
With the Saga Assist you can "Start Recording" and use a Bandages on your target. There you get your target ID
Replace your number  -> Targeting.Target(########)
with local BANDAGE_COOLDOWN = #### set how long the Bandages take
local CHECK_INTERVAL = 100 -- ms loop delay
local BANDAGE_COOLDOWN = 5000 -- ms to wait after using a bandage
function GetBandage()
    return Items.FindByType(0x0E21)
end
while true do
    local bandage = GetBandage()
    if bandage then
        if Player.UseObject(bandage.Serial) then
            if Targeting.WaitForTarget(1000) then
                Targeting.Target(########)
                Pause(BANDAGE_COOLDOWN)  -- Wait for bandage to complete
            end
        end
    else
        Messages.Overhead("❌ No bandages left!", 33, Player.Serial)
    end
    Pause(CHECK_INTERVAL)
end