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
Xlog bug
#1
Hi, I've been using this persistent for a while with no problem:

if mppc() >= 99 then
xlog()
end
-----------
to make runes, so whenever its full mana, the bot logs out.

but I dont know whats going on but sometimes the bot just XLOG for no reason, with no mana full, I dont know why but its only on the character with lvl 20+ runing SD, the ones making GFB do not have this problem.

could you please make me a persistent that whenever appears that msg on the bottom of the screen: 

"You need a magic item to cast this spell."

the bot would log out, could you please?

I know theres a feature on Runemaking session but it doesnt work, because whenever the char recconects, he is to slow to open the backpack inside main backpack, then it logs out without giving the bot a chance to open the blank rune bps. could u please make me that persistent? thank you !

PS: also if possible, it would be better using log out rather than the xlog, log out and pause recconect...
Reply

#2
Hello.

I don't believe that's a bug. Even so, it would be on mppc() not on xlog(), because it xlog() is called under a specific condition.

GM could be healing and remove your mana to check if you are botter, but doesn't makes sense because you would be banned already. XD
This will print your mp% and mana when logs out.
local playerMana = mppc()
if playerMana >= 99 then
    print('Logging out due full mana: ' .. tostring(playerMana) .. ' (' .. tostring(mp()) .. ')'')
    xlog()
end

This code check for the exactly message.
local TEXT = 'You need a magic item to cast this spell.'

local statusMessage = statusmessage()
if statusMessage ~= nil and statusMessage:lower() == TEXT:lower() then
    setsettings('Tools/Reconnect/Enabled', false)
    logout()
end

This code check if status message CONTAINS the specified text, so text doesn't need to match.
local TEXT = 'You need a magic item to cast this spell.'

local statusMessage = statusmessage()
if statusMessage ~= nil and string.find(statusMessage:lower(), TEXT:lower()) ~= nil then
    setsettings('Tools/Reconnect/Enabled', false)
    logout()
end
Reply

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

could you please add pause recconect? otherwise the char will be onn a loop logging on and logging out unstoppably.
Reply

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

Done
Reply

#5
|Only Registered members can see download links. | Click here to buy subscription or here to register.
thank you very much, helped me a lot !
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016