Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 99999
- basebet = balance/fraction
- chance = 49.5
- nextbet = basebet
- bethigh = true
- james = balance
- target = 50000
- bot = 0
- free = 0
- box = 0
- zix = 0
- resetstats()
- function dobet()
- basebet = balance/fraction
- if (win) then
- nextbet = previousbet*1.5
- bot = 0
- box+=1
- else
- bot+=1
- end
- if (bot==2) then
- nextbet = previousbet*2
- resetseed()
- bot = 0
- end
- if (box==2) then
- zix+=1
- box = 0
- end
- if nextbet>=balance/1024 then
- nextbet = previousbet*2
- end
- if (balance>(james+(basebet*10))) or (balance>=james) and (zix>=1) then
- nextbet = basebet
- bot = 0
- free = 0
- box = 0
- zix = 0
- james = balance
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement