Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- more = balance
- fraction = 160000
- basebet = long/fraction
- nextbet = basebet
- bethigh = false
- loss = 0
- winn = 0
- lossy = 0
- xix = 0
- target = balance*1000
- chance = 49.95
- function dobet()
- if !win then
- loss+=1
- lossy+=1
- bethigh = !bethigh
- else
- winn+=1
- xix+=1
- loss = 0
- lossy = 0
- end
- if (loss==2) then
- bethigh = !bethigh
- loss = 0
- end
- if (lossy==3) then
- bethigh = !bethigh
- lossy = 0
- end
- if (winn==2) then
- nextbet = previousbet*2
- winn = 0
- end
- if (xix==3) then
- nextbet = previousbet*2
- xix = 0
- winn = 0
- end
- if (nextbet == nil) then
- nextbet = previousbet
- end
- if (balance >= more) then
- nextbet = balance/fraction
- more = balance
- end
- if (balance > target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement