Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bob = 1000000
- b = balance/50000 ---basebet
- x = bob
- chance = 49.5 ---2x
- bethigh = false
- nextbet = b
- target = balance*1000
- old = balance
- v = bob
- resetstats()
- function dobet()
- if win then
- v = v+1
- else
- v = v-1
- end
- if (v<=(x-4)) then
- nextbet = previousbet*2
- x = v
- end
- if (v>=(x+7)) then
- nextbet = previousbet*2
- x = v
- end
- if (balance>=(old+(b*10))) then
- nextbet = b
- v = bob
- x = bob
- y = bob
- old = balance
- end
- if (balance>target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement