2.00
Bet: 85,964,995,985
placed by Serlite on 24/03/2021
Wagered
0.00283250
Multiplier
1.01x
Profit
0.00002889
A nice and simple rollhunt! I don't mind those. Here's the usual script for anyone that needs it:
chance = 98
nextbet = 0.00283250
bethigh = false
currency = "Ltc"
numbersToHunt =
{
00.00, 01.00, 02.00, 03.00, 04.00,
05.00, 10.00, 20.00, 30.00, 40.00,
50.00, 60.0, 70.00, 80.00, 90.00,
91.00, 92.00, 93.00, 94.00, 95.00,
99.00, 99.99
}
function dobet()
if containedInSet(lastBet.Roll, numbersToHunt) then
ching()
print(lastBet.Roll)
print(lastBet.Id)
stop()
end
end
function containedInSet(x, set)
for key, value in pairs(set) do
if x == value then
return true
end
end
return false
end