Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 200
- basebet = balance/fraction
- nextbet = basebet
- bethigh = false
- chance = 24
- more = balance
- target = 30
- vim = 0
- zim = 0
- james = balance
- fim = 0
- rim = 0
- function dobet()
- if win then
- zim+=1
- fim+=1
- vim = 0
- rim = 0
- else
- vim+=1
- rim+=1
- end
- if (zim == 10) then
- zim = 0
- end
- if (fim<=4) and (zim>=1) then
- zog+=1
- vim = 0
- fim = 0
- zim = 0
- else
- zog = 0
- end
- if (rim==10) then
- nextbet = previousbet*2
- rim = 0
- end
- if (vim==15) then
- nextbet = previousbet*2
- vim = 0
- end
- if zog>1 then
- nextbet = previousbet*2
- zog = 0
- end
- if balance>james*1.03 and win then
- nextbet = basebet
- james = balance
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement