Log in

View Full Version : i need alarm when capcity <= x, and gold counter



Dzonzi
08-08-2016, 09:38 AM
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.

Zingron
08-08-2016, 11:52 AM
Alarm when below x capacity



local capacityAlert = 10

Module.New('CapacityCheck', function(alertCap)
if Self.Cap() < capacityAlert then
alert()
end
alertCap:Delay(5000)
end)

mikjail
08-23-2016, 04:00 PM
Zingron

Man, I'm trying to make an script that goes to labelName if there are items in lootBP this what I got



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