Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 49.5
- basebet = 0.00001
- floatingbasebet = basebet
- target = 5000
- amountup = 6.9
- amountdown = 2.9
- glitchfix = false
- lumptenbase = (basebet*10)
- sevenbasebet = (basebet*6.9)
- amountlumps = 1
- tag = balance
- oldbalanceone = ((math.floor(tag/lumptenbase))*lumptenbase)
- oldbalancetwo = ((math.floor(tag/lumptenbase))*lumptenbase)
- balancenow = balance
- nextbet = basebet
- bethigh = false
- resetstats()
- function dobet()
- if (win) then
- balancenow = balancenow+floatingbasebet
- else
- balancenow = balancenow-floatingbasebet
- end
- if (balancenow>(oldbalanceone+(floatingbasebet*amountup))) then
- nextbet = floatingbasebet*2
- floatingbasebet = floatingbasebet*2
- amountup = 4.9
- amountdown = 4.9
- amountlumps = 1
- glitchfix = true
- oldbalanceone = balancenow
- end
- if ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (glitchfix==true)) then
- amountup = 4.9
- amountdown = 4.9
- nextbet = floatingbasebet*2
- floatingbasebet = floatingbasebet*2
- oldbalanceone = balancenow
- end
- if ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (glitchfix==false)) then
- amountlumps = 0
- amountup = 4.9
- amountdown = 4.9
- nextbet = floatingbasebet*2
- floatingbasebet = floatingbasebet*2
- oldbalanceone = balancenow
- end
- if ((balancenow>(oldbalancetwo+(basebet*amountlumps))) and (balancenow>(oldbalancetwo+(((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
- amountup = 4.9
- amountdown = 4.9
- nextbet = basebet*2
- floatingbasebet = basebet*2
- glitchfix = false
- amountlumps = 1
- oldbalanceone = ((math.floor(balancenow/lumptenbase))*lumptenbase)
- oldbalancetwo = ((math.floor(balancenow/lumptenbase))*lumptenbase)
- end
- if ((balancenow>(oldbalancetwo+(basebet*amountlumps))) and (balancenow<(oldbalancetwo+(((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
- amountup = 6.9
- amountdown = 2.9
- nextbet = basebet
- floatingbasebet = basebet
- glitchfix = false
- amountlumps = 1
- oldbalanceone = ((math.floor(balancenow/lumptenbase))*lumptenbase)
- oldbalancetwo = ((math.floor(balancenow/lumptenbase))*lumptenbase)
- end
- if (balancenow>target) then
- return
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement