-
Notifications
You must be signed in to change notification settings - Fork 1
/
Constants.lua
49 lines (43 loc) · 1.86 KB
/
Constants.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
-- Constants.lua
Constants = Constants or {}
Constants.CRED = "Sa0iBLPNyJQrwpTTG-tWLQU-1QeUAJA73DdxGGiKoJc"
Constants.WAR = "xU9zFkq3X2ZQ6olwNVvr1vUWIjc3kXTWr7xKQD6dh10"
Constants.TestToken = "1PIaQp_wij0H8Ykx-LuQEUqXQndryycWRjCRvV3R8lI"
Constants.JOOSE = "YMs4s_KkK7JHG1y8QplgZz0RYuKL_46FLq5ZG4wWrn8"
Constants.OldRandomSeed = Constants.OldRandomSeed or 69420
Constants.EXP = "aYrCboXVSl1AXL9gPFe3tfRxRf0ZmkOXH65mKT0HHZw"
Constants.TRUNK = "OT9qTE2467gcozb2g8R6D6N3nQS94ENcaAIJfUzHCww"
Constants.LLAMA = 'pazXumQI-HPH7iFGfTC-4_7biSnqz_U67oFAGry5zUY'
Constants.ExclusiveLlama = 'zsU5NxCo8WbpyLCqXrckjmXfP0PWpAGzo1E-W_iegbI'
Constants.LlamaLand = "9a_YP6M7iN7b6QUoSvpoV3oe3CqxosyuJnraCucy5ss"
-- Initialize Tokens and HouseBalance
Constants.Tokens = {
{ name = "TRUNK", process = Constants.TRUNK, minBet = 100, maxBet = 1000 },
{ name = "EXP", process = Constants.EXP, minBet = 1000000, maxBet = 50000000 },
{ name = "wAR", process = Constants.WAR, minBet = 100000000000, maxBet = 500000000000 },
{ name = "JOOSE", process = Constants.JOOSE, minBet = 1000000000000, maxBet = 100000000000000 },
{ name = "Llama", process = Constants.LLAMA, minBet = 1000000000000, maxBet = 1000000000000}
-- { name = "TestToken", process = Constants.TestToken, minBet = 100, maxBet = 1000 }
}
HouseBalance = HouseBalance or {
[Constants.TestToken] = 0,
[Constants.JOOSE] = 0,
[Constants.WAR] = 0,
[Constants.EXP] = 0,
[Constants.TRUNK] = 0,
[Constants.LLAMA] = 0
}
LockedBalance = LockedBalance or {
[Constants.TestToken] = 0,
[Constants.JOOSE] = 0,
[Constants.WAR] = 0,
[Constants.EXP] = 0,
[Constants.TRUNK] = 0,
[Constants.LLAMA] = 0
}
function Constants.RefreshBalances()
for _, token in pairs(Constants.Tokens) do
ao.send({ Target = token.process, Action = "Balance" })
end
end
return Constants