CaveBot Mana Delay
#117
Toggles vBot CaveBot based on mana amount.
--[[
Script made by Lee (Discord: l33_) - www.trainorcreations.com
If you want to support my work, feel free to donate at https://trainorcreations.com/donate
PS. Stop ripping off my work and selling it as your own.
]]--
macro(500, "Delay Low Mana", function()
if isInPz() then return end
if manapercent() <= 90 then
CaveBot.delay(1000)
end
end)
--[[
Script made by Lee (Discord: l33_) - www.trainorcreations.com
If you want to support my work, feel free to donate at https://trainorcreations.com/donate
PS. Stop ripping off my work and selling it as your own.
]]--
local manaToggle = macro(100, "Toggle Mana", function()
if manapercent() < 96 and CaveBot.isOn() then
CaveBot.setOff()
elseif manapercent() > 96 and CaveBot.isOff() then
CaveBot.setOn()
end
end)
08 Jun 2024