Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 33
- base = balance/10000
- nextbet = balance/10000
- losecount = 0
- target = balance*130
- a = 0
- i = balance*0.99
- k = 1400
- function dobet()
- if balance > target then stop() end
- if (a==16) then
- bethigh=!bethigh
- resetseed()
- a=0
- end
- if win then
- a+=1
- nextbet = base
- chance = 20
- losecount = 0
- else
- nextbet = previousbet*1.33
- losecount+=1
- end
- if(i>k)then
- resetseed()
- end
- if (losecount >= 6) then
- nextbet = previousbet*1.33
- chance = 6
- end
- if (losecount >= 10) then
- nextbet = previousbet*1.33
- chance = 20
- end
- if (losecount >= 12) then
- nextbet = previousbet*1.33
- chance = 8
- end
- if (losecount >= 16) then
- nextbet = previousbet*1.55
- chance = 28
- end
- if ( losecount >= 18) then
- nextbet=previousbet*1.5
- chance = 13
- end
- if ( losecount >= 19) then
- nextbet=previousbet*1.51
- chance = 14.3
- end
- if ( losecount >= 20) then
- nextbet=previousbet*1.53
- chance = 15.5
- end
- if ( losecount >= 21) then
- nextbet=previousbet*1.56
- chance = 16.2
- end
- if ( losecount >= 22) then
- nextbet=previousbet*1.56
- chance = 16.68
- end
- if ( losecount >= 23) then
- nextbet=previousbet*1.56
- chance = 17.18
- end
- if ( losecount >= 25) then
- nextbet = previousbet*1.65
- chance = 36
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement