Hello.
This script will cast Berserk ("exori") spell when you are surrounded by X monsters defined on list.
It will also check if your HP % is higher than Y, just to make sure that you won't try to cast it while healing!
Credits to me and @Mrcn.
This script will cast Berserk ("exori") spell when you are surrounded by X monsters defined on list.
It will also check if your HP % is higher than Y, just to make sure that you won't try to cast it while healing!
Credits to me and @Mrcn.
local Monsters = { 'Frost Giant', 'Dragon' } -- Monsters to kill
local SafeList = { 'Mrcn', 'CM Guido' } -- Your safelist
local MinMonsters = 1 -- Min. count to cast exori.
local SafeHealth = 30 -- Only if your HP % is higher or equal to this valaue.
local CheckPlayers = true -- Check for players? Not going to CAST SPELL if player on screen.
local CheckAllFloor = true -- Checks all floors for players?
if hppc() >= SafeHealth and mp() >= (level()*2) and cancast() and maround(1, unpack(Monsters)) >= MinMonsters then
if not CheckPlayers or paroundignore(0, CheckAllFloor, unpack(SafeList)) == 0 then
cast('exori')
wait(1000, 1200)
end
end