Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Exori
#1
Can you make a script for EXORI 2 or more creatures and checking if theres players on the screen pls, thanks

#2
Hello.

-- [ 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
       say('exori')
       wait(1200)
  end
end
Credits to me and Mrcn.

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.


Just putting this in the script it should work right? cuz i cant get it working

#4
Hello.

Not really, you should setup:
1. Monsters: with monsters that should be counted to cast exori.
2. MinMonsters: with a the monster count that it should cast exori.

#5
|Only Registered members can see download links. | Click here to buy subscription or here to register.

hey arkilys, this script is not working to me. He dont use exori, even if i use my name in safelist, whats wrong? My settings is all good...


-- [ Settings ] --
local Monsters = { 'Ghoul', 'Scarab', 'Skeleton' } -- Monsters to kill
local SafeList = { } -- 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 = false -- 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
end

#6
Hello.

The script works fine.

Go to hunt place, let some monsters around and run this code. IT will print some stuff on Console, copy and paste here. TO copy, you just need to select the line and press CTRL+C or select any line and press SHIFT+C to copy all lines.
-- [ Settings ] --
local Monsters = { 'Ghoul', 'Scarab', 'Skeleton' } -- Monsters to kill
local SafeList = { } -- 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 = 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

#7
|Only Registered members can see download links. | Click here to buy subscription or here to register.


that's what appeared in my console, is right? I dont know why, but its all right here and still dont work ;'(


21:25:17 - LUA command sent.
21:25:17 - mp check 245 100
21:25:17 - monster check:  4 1
21:25:17 - player check:  0 false
21:25:17 - -----

#8
Everything is working as it should. So i suppose the problem may be with your hotkeys or so.


Do it again. Go to hunt place, let some monsters around and run this code. IT will print some stuff on Console, copy and paste here. TO copy, you just need to select the line and press CTRL+C or select any line and press SHIFT+C to copy all lines.
-- [ Settings ] --
local Monsters = { 'Ghoul', 'Scarab', 'Skeleton' } -- Monsters to kill
local SafeList = { } -- 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 = false -- 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
print('a')
  if not PVP or paroundignore(CheckAllFloor, unpack(SafeList)) == 0 then
print('b')
      cast('exori')
      wait(1200)
  end
end

#9
|Only Registered members can see download links. | Click here to buy subscription or here to register.


Here. I think is something in nostalrius, because with my friend is not working this script too... but i dont know what is =(

22:09:50 - LUA command sent.
22:09:50 - a
22:09:50 - b

#10
Hello.

This script works fine and the results above says it's working.
I believe the error may be in your hotkeys.



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016