Hi guys, thought ill upgrade @Arkilys exori script, so it's safe to use on PVP servers. Enjoy!
-- [ Settings ] --
local Monsters = { 'Frost Giant', 'Snaek' } -- Monsters to kill
local SafeList = { 'Mrcn', 'CM Guido' } -- Your safelist
local MinMonsters = 1 -- Min. count to cast exori.
local SafeHealth = 70 -- Only if your HP % is higher or equal to this valaue.
local PVP = true -- PVP world?
local CheckAllFloor = true -- Checks all floors for players?
-- [ Safe Exori by Mrcn and fixed by Arkilys ] --
if hppc() >= SafeHealth and mp() >= (level()*2) and cancast() and maround(1, unpack(Monsters)) >= MinMonsters then
if not PVP or paroundignore(CheckAllFloor, unpack(SafeList)) == 0 then
cast("exori")
wait(1200)
end
return
end