Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 10000
- basebet = balance/fraction
- nextbet = basebet
- bethigh = false
- chance = 49.95
- more = balance
- dim = 0
- rim = 0
- sem = 0
- sim = 0
- xim = 0
- bill = 0
- fim = 0
- fog = 0
- target = 100
- function dobet()
- if !win then
- rim+=1
- sem+=1
- fim+=1
- sim+=1
- else
- dim+=1
- sem+=1
- xim+=1
- sim+=1
- end
- if (rim>=2) then
- nextbet = previousbet*2
- end
- if rim<2 then
- nextbet = previousbet
- else
- if dim>=3 then
- nextbet = previousbet*2
- end
- end
- if (fim==xim) and (fim>0) then
- bill+=1
- else
- fog+=1
- end
- if (sem==6) then
- dim = 0
- rim = 0
- sem = 0
- end
- if (fog==3) then
- fog = 0
- end
- if (bill>=2) and (fim==xim) and (fim>0) and fog>=1 then
- nextbet = previousbet*2
- bill = 0
- fim = 0
- xim = 0
- fog = 0
- end
- if (sim==2) then
- fim = 0
- xim = 0
- sim = 0
- end
- if (balance >= (more*2)) and win then
- nextbet = basebet
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement