need this for do a script lvl low
Printable View
need this for do a script lvl low
not perfect but something i made quickly:
It will essentially pause the walker until your mana hits whatever variable ammount you set, default in this case is 50Code:local manaToPauseWalker = 50 -- Mana
local timeToWait = 1000 -- Change this to your wait time
Self.ManaPercent = function ()
return math.abs(Self.Mana() / (Self.MaxMana() * 0.01))
end
Module.New('pauseWalker', function()
if (Self.ManaPercent() < manaToPauseWalker) then
Walker.Delay(timeToWait)
end
end)