Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 51200
- basebet = balance/fraction
- nextbet = basebet
- bethigh = false
- chance = 24
- target = 500000
- james = balance
- botbuddy = 0
- zonk = 0
- biz = 0
- yo = 0
- him = balance
- resetstats()
- function dobet()
- if !win then
- botbuddy+=1
- biz+=1
- end
- if (botbuddy==8) then
- nextbet = previousbet*2
- botbuddy = 0
- yo+=1
- end
- if (yo>=2) and (zonk==0) then
- nextbet = previousbet
- end
- if (biz==22) then
- nextbet = previousbet*2
- zonk+=1
- biz = 0
- end
- if (zonk==1) and (biz==8) then
- nextbet = previousbet*2
- biz = 0
- end
- if (nextbet==nil) then
- nextbet = previousbet
- end
- if balance>james then
- nextbet = basebet
- botbuddy = 0
- yo = 0
- zonk = 0
- biz = 0
- james = balance
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement