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
Check if i get skull
#1
Check if i get skull (cause using exori or any other spells, doesnt matter) and disable a persistent (so it wont do the spell again).

Thank you in advance
Reply

#2
You add that check directly in your persistent like
if skull() >= 3 then
  ...
end

Or use the script below, which requires the persistent -> enabled path to disable it. You just need to select the persistent's you wanna disable, right-click on enabled checkbox then click on "copy path" then add it to "PERSISTENTS_PATH" variable.
local PERSISTENTS_PATH = {
  'Persistents/0/Enabled'
}

if skull() >= 3 then
  for _, persistent in ipairs(PERSISTENTS_PATH) do
    setsettings(persistent, false)
  end
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016