Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = 0.000001
- james = basebet
- boom = 1
- oldDigit = 0
- crazy = ((math.floor(balance / ten)) * ten)
- adjustedValue = basebet
- decimalPart = tostring(adjustedValue):match("%.(%d+)") or ""
- highestDigit = math.max(table.unpack(decimalPart:split(""):map(tonumber)))
- mole = decimalPart:find(tostring(highestDigit)) + 1
- mad = mole()
- function xig()
- balanceDecimalIndex = balance:find("%.")
- if ((balance:sub(balanceDecimalIndex + mad, balanceDecimalIndex + mad) == "7") and (not(balance==oldDigit)) and (balance < crazy)) then
- james = james * 2
- boom = 0
- oldDigit = balance
- end
- if ((balance:sub(balanceDecimalIndex + mad, balanceDecimalIndex + mad) == "7") and (not(balance==oldDigit)) and (balance >= crazy)) then
- james = james * 2
- oldDigit = balance
- end
- if ((not(balance:sub(balanceDecimalIndex + mad, balanceDecimalIndex + mad) == "7")) and (balance >= (crazy + (ten * boom)))) then
- james = basebet
- boom = 1
- oldDigit = 0
- crazy = ((math.floor(balance / ten)) * ten)
- end
- if ((balance:sub(balanceDecimalIndex + mad, balanceDecimalIndex + mad) == "7") and (balance >= (crazy + (ten * boom)))) then
- james = basebet * 2
- boom = 1
- oldDigit = balance
- crazy = ((math.floor(balance / ten)) * ten)
- end
- return james
- end
- function dobet()
- chance = 49.5
- bethigh = false
- nextbet = xig()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement