Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --@ Keiichi_Crazy66%
- startingbet = 0.00005555 --@ should be at least x4 allowed minbet
- basebet = startingbet*0.25
- profittarget = 0.00000010 --@ the bigger the riskier
- targetb = 0.250 --Bot stops after this profit limit is reached.
- -----------------------------------
- chance = 66
- won = 0
- lost = 0
- bethigh = true
- nextbet = basebet
- sessionprofit = 0
- profitamount = 0
- curbal = balance
- function dobet()
- if (win) then
- nextbet = previousbet + previousbet*0.25
- profitamount=profitamount+currentprofit
- won = won+1
- lost = 0
- if profitamount >= profittarget then
- profitamount = 0
- nextbet = basebet
- end
- curbal = balance
- if curbal >= targetb then
- print("\nTARGET REACHED. GRATS")
- stop()
- end
- else
- nextbet = previousbet * 2.2
- profitamount=profitamount+currentprofit
- lost = lost+1
- won = 0
- --if (bethigh) then
- --bethigh = false
- --else
- -- bethigh = true
- --end
- if lost >= 3 then
- nextbet = basebet
- end
- end
- end
- if sessionprofit <= profitamount then
- sessionprofit = profitamount
- end
Advertisement
Add Comment
Please, Sign In to add comment