i try to write script that cast exevo con if less than 85 arrows in arrow slot... just it simple for nostalrius and cant make it from this beg
i only made it to not more than cap but i auto loot items and it fucks. need just cast exevo con if less than 85 arrows in arrow slot so it will be fully refiled every 15 shots
local spell = 'exevo con'
local spell_mana = 40
local capacity = 760 -- Stops if your capacity is equal or lower than this value.
if mp() >= spell_mana and cancast() and cap() > capacity then
cast(spell)
wait(1000)
stackitems()
wait(800)
end
i only made it to not more than cap but i auto loot items and it fucks. need just cast exevo con if less than 85 arrows in arrow slot so it will be fully refiled every 15 shots
local spell = 'exevo con'
local spell_mana = 40
local capacity = 760 -- Stops if your capacity is equal or lower than this value.
if mp() >= spell_mana and cancast() and cap() > capacity then
cast(spell)
wait(1000)
stackitems()
wait(800)
end