Hello im not that skilled at coding but i found the script that i need to adjust some in the attacker script im using. id like to get as much exp/hour as possible
and what that i need your help with is following
- use sds on single target behemoths from 100>5% hp then use exori frigo

i would be amazing if someone could help me with this


-- Script v1.0.3 - Strahowski
init start
local Monsters = {"Behemoth", "Cyclops Smith", "Cyclops Drone", "Cyclops"}
local AreaRuneMinMonster = 2
local StrongSpell = "exori gran vis"
if($vocshort == "D") then
StrongSpell = "exori gran frigo"
end
init end

auto(200)
if(cooleddown('attack') and $targeting) then
local AERune = getarearunetile(true, unpack(Monsters))
if(AERune.amount >= AreaRuneMinMonster and $posz >= 14) then
pausewalking(500)
useitemon("Avalanche rune", 0, AERune.tile)
wait(100)
else
if(maround(5, "Behemoth") > 5 and $target.id ~= 0) then
useitemon("Sudden death rune", $target.id) wait(100)
elseif(getuseroption('usestrongspell') and cancast(StrongSpell) and $target.hppc >= 10 and $target.id ~= 0) then
cast(StrongSpell) wait(100)
elseif(cancast("exori frigo") and $target.id ~= 0) then
cast("exori frigo") wait(100)
end
end
end