Whew, that's a lot of options to hit this week. More chances for a minimal entry!
7.70
Bet: 71,198,989,257
placed by Serlite on 16/11/2020
Wagered
0.01328000
Multiplier
1.01x
Profit
0.00013546
As for the script...well, it's a typical rollhunt script. So you probably already have it:
chance = 98
nextbet = 0.01328000
bethigh = false
currency = "Ltc"
numbersToHunt = {
0.00, 1.10, 10.01, 2.20, 20.02, 3.30, 30.03,
4.40, 40.04, 5.50, 50.05, 6.60, 60.06, 7.70,
70.07, 8.80, 80.08, 9.90, 90.09, 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