Your browser does not support JavaScript or its disabled!
Please turn it on, or be aware that some features on this website will not work correctly.
853
CaveBot Mana Delay #117
Toggles vBot CaveBot based on mana amount.
File: cbManaDelay.lua | 141b | 6 lines.
--[[
  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)
File: cbManaToggle.lua | 214b | 7 lines.
--[[
  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
Ads