Posts: 2,948
Threads: 492
Joined: Jul 2018
Reputation:
84
I can't help you further. I already tested the script and it works.
I recommend you to create your hotkeys again or change cast('exori') to say('exori').
Posts: 8
Threads: 6
Joined: Nov 2020
Reputation:
0
-- [ Settings ] --
local Monsters = { 'Dwarf Guard' } -- Monsters to kill
local SafeList = { } -- Your safelist
local MinMonsters = 3 -- Min. count to cast exori.
local SafeHealth = 50 -- Only if your HP % is higher or equal to this valaue.
local PVP = true -- PVP world?
local CheckAllFloor = false -- Checks all floors for players?
print('mp check', mp(), (level()*2))
print('monster check: ', maround(1, unpack(Monsters)), MinMonsters)
print('player check: ', paroundignore(CheckAllFloor, unpack(SafeList)), CheckAllFloor, unpack(SafeList))
print('-----')
-- [ 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
end
Hello.
how to change exori *2lvl to 120 mana?
Thx