07-04-2019, 01:20 PM
Hello.
This script will try to shoot a GFB on the best possible SQM to hit as many monsters as possible, but will only shoot the rune if you can hit the least amount of monsters you have set.
This script will try to shoot a GFB on the best possible SQM to hit as many monsters as possible, but will only shoot the rune if you can hit the least amount of monsters you have set.
local Monsters = { 'Ghoul', 'Scarab', 'Stalker' }
local Rune = 'great fireball rune'
local MinMonsters = 2 -- Min. count to shoot rune.
local SafeHealth = 60 -- Shoot runes only if your HP % is higher or equal to this valaue.
local PlayerSafe = true -- Check if there's another player on screen. If so, don't shoot rune.
if hppc() >= SafeHealth and cancast() and maround(7, unpack(Monsters)) >= MinMonsters and (PlayerSafe == false or (PlayerSafe and paround() == 0)) then
if shootarearune(Rune, MinMonsters, unpack(Monsters)) then
wait(1200)
end
end