• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[vBot_4.8] Stop cavebot if mana is low

potinho

Advanced OT User
Joined
Oct 11, 2009
Messages
1,403
Solutions
17
Reaction score
151
Location
Brazil
Hello guys,

There's a script or something for OTCv8 cavebot who stops char if mana is less then X%? And after mana > value, cavebot continues?
 
like this?
Lua:
local manac = 20000
macro(200, "Stop Cavebot", function()
    if mana() < manac then
        CaveBot.setOff()
        TargetBot.setOff()
    else
        CaveBot.setOn()
        TargetBot.setOn()
    end
end)

It is more feasible to ask for help in the discord of the same otclientv8
 
Back
Top