12-07-2024, 04:42 PM
Hi,
I need edit this script to use exori only when listed monsters has lower then 25%hp.
THX
I need edit this script to use exori only when listed monsters has lower then 25%hp.
THX
-- [ Settings ] --
local Monsters = { 'Hero', 'Blood Priest', 'Renegade Knight', 'Vicious Squire', 'Vile Grandmaster' } -- Monsters to kill
local SafeList = { 'Mrcn', 'CM Guido' } -- Your safelist
local MinMonsters = 2 -- Min. count to cast exori.
local SafeHealth = 60 -- 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 maround(1, unpack(Monsters)) >= MinMonsters then
if not PVP or paroundignore(CheckAllFloor, unpack(SafeList)) == 0 then
say("exori")
end
return
end