I need a script for alarm when my capcity is lower then x.
Second script is gold counter from my hunt. All gold earned from last log in.
Printable View
I need a script for alarm when my capcity is lower then x.
Second script is gold counter from my hunt. All gold earned from last log in.
Alarm when below x capacity
Code:local capacityAlert = 10
Module.New('CapacityCheck', function(alertCap)
if Self.Cap() < capacityAlert then
alert()
end
alertCap:Delay(5000)
end)
@Zingron
Man, I'm trying to make an script that goes to labelName if there are items in lootBP this what I got
Code:elseif (labelName == "DepositItems") then
if (Container:ItemCount() > 0) then
print("Found " .. Container.ItemCount() .. " items to deposit.")
wait(1500)
Walker.Goto("Reach Depot")
else
Walker.Goto("CheckSupp")
end