Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 66
- prebet = balance/1000
- nextbet = balance/1000
- bethigh = false
- zog = 0
- lose = 0
- function dobet()
- if win then
- chance = 66
- zog += 3
- lose = 0
- else
- lose += 1
- zog -= 1
- end
- if (zog > 6) then
- nextbet = balance/1000
- zog = 0
- end
- if (lose==2) then
- nextbet = previousbet*3
- end
- if (lose==4) then
- nextbet = previousbet*3
- end
- if (lose==6) then
- nextbet = previousbet*3
- end
- if (lose > 8) then
- nextbet = previousbet*1.5
- bethigh = true
- end
- if balance > 2 then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement