Whew, can't say this was a profitable hunt...I'm basically converting LTC into ETH, at a lousy exchange rate. XD
31.00
Bet: 64,621,622,833
placed by Serlite on 27/07/2020
Wagered
0.02000000
Multiplier
1.01x
Profit
0.00020400
As for the script...well, I've set it up so you can hunt both the regular challenge and the VIP challenge simultaneously. So you can save a few rolls! Just don't forget to lower the bet once you've finished with the VIP challenge (if you still need to finish hunting the regular challenge), since otherwise it's a bit of a waste of money. And remember to delete numbers as you hit them!
chance = 98
nextbet = 0.02
bethigh = true
currency = "Ltc"
numbersToHunt =
{
-- VIP challenge
01.00, 20.00, 21.00, 31.00, 41.00,
51.00, 61.00, 71.00, 81.00, 91.00,
-- Normal challenge
11.11, 22.22, 33.33, 44.44, 55.55,
66.66, 77.77, 88.88, 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