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
if x mana fluid log out
#1
Question 
if x mana fluid left then log out please

it would be very useful
thanks
Reply

#2
Use search.
Reply

#3
did that already and found only to play alert if there is x mana fluid left,or check uh then log out

tbh i am not into scripting unfortunately mate
Reply

#4
Hello.

If you already found to logout when no uhs then just change it.
Reply

#5
did it like this and it doesn;t work. i have full bp of mana fluids and it is disabling the cavebot


-




local Backpack = 'Purple backpack' -- specific container to check for runes.
local Rune = 'vial of manafluid' -- rune to check.

local OPEN_BACKPACK = false -- open next backpack for more runes?

local COUNT = 3 -- Min. count to play alert.

--[[ DON'T EDIT BELOW THIS LINE --]]
--[[ DON'T EDIT BELOW THIS LINE --]]
--[[ DON'T EDIT BELOW THIS LINE --]]

if connected() then
Rune = itemid(Rune)

local Containers = getcontainers()

for i = 1, #Containers do
local cont = Containers[i]
local ContainerSlot = -1
local RunesCount = 0

if (cont.name:lower() == Backpack:lower() or tostring(Backpack) == tostring(cont.index)) then
for j = 1, #cont.items do
local item = cont.items[j]
if itemhasflags(item.id, 4) then
ContainerSlot = item.index
elseif item.id == Rune then
RunesCount = RunesCount + item.count
end
end

if OPEN_BACKPACK and RunesCount == 0 and ContainerSlot >= 0 then
openitemslot(ContainerSlot, cont.index, false)
wait(1000)
elseif RunesCount <= COUNT and ContainerSlot == -1 then
setsettings('Cavebot/Enabled', false)
logout()
wait(800)
end
end
end
end
Reply

#6
Change
local Rune = 'vial of manafluid' -- rune to check.
to
local Rune = 'mana fluid' -- rune to check.
or
local Rune = 7 -- rune to check.
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016