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
- lumptenbase = (basebet*10)
- sevenbasebet = (basebet*6.9)
- amountlumps = 1
- oldbalancetwo = balance
- oldbalancethree = balance
- oldbalanceone = balance
- balancenow = balance
- nextbet = basebet
- 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
- oldbalanceone = balancenow
- oldbalancetwo = oldbalancetwo+((math.ceil((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)
- end
- if (balancenow<(oldbalanceone-(floatingbasebet*amountdown))) then
- amountup = 4.9
- amountdown = 4.9
- nextbet = floatingbasebet*2
- floatingbasebet = floatingbasebet*2
- oldbalanceone = balancenow
- end
- if ((balancenow>(oldbalancetwo+(lumptenbase*amountlumps))) and (balancenow<(oldbalancetwo+(((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
- oldbalanceone = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)
- oldbalancetwo = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)
- amountup = 6.9
- amountlumps = 1
- amountdown = 2.9
- nextbet = basebet
- floatingbasebet = basebet
- end
- if ((balancenow>(oldbalancetwo+(lumptenbase*amountlumps))) and (balancenow>(oldbalancetwo+(((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
- oldbalanceone = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)
- oldbalancetwo = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)
- amountup = 4.9
- amountlumps = 1
- amountdown = 4.9
- nextbet = basebet*2
- floatingbasebet = basebet*2
- end
- if ((balancenow>(oldbalancethree+(lumptenbase))) and (balancenow>(oldbalancethree+(((math.floor((balancenow-oldbalancethree)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
- oldbalanceone = oldbalancethree+((math.floor((balancenow-oldbalancethree)/lumptenbase))*lumptenbase)
- oldbalancetwo = oldbalancethree+((math.floor((balancenow-oldbalancethree)/lumptenbase))*lumptenbase)
- oldbalancethree = oldbalancethree+((math.floor((balancenow-oldbalancethree)/lumptenbase))*lumptenbase)
- amountup = 4.9
- amountlumps = 1
- amountdown = 4.9
- nextbet = basebet*2
- floatingbasebet = basebet*2
- end
- if ((balancenow>(oldbalancethree+(lumptenbase))) and (balancenow<(oldbalancethree+(((math.floor((balancenow-oldbalancethree)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
- oldbalanceone = oldbalancethree+((math.floor((balancenow-oldbalancethree)/lumptenbase))*lumptenbase)
- oldbalancetwo = oldbalancethree+((math.floor((balancenow-oldbalancethree)/lumptenbase))*lumptenbase)
- oldbalancethree = oldbalancethree+((math.floor((balancenow-oldbalancethree)/lumptenbase))*lumptenbase)
- amountup = 6.9
- amountlumps = 1
- amountdown = 2.9
- nextbet = basebet
- floatingbasebet = basebet
- end
- if (balancenow<=(oldbalancetwo-(basebet*4.9))) then
- amountlumps = amountlumps+1
- oldbalancetwo = oldbalancetwo-((math.ceil((oldbalancetwo-balancenow)/lumptenbase))*lumptenbase)
- end
- if (balancenow>target) then
- return
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement