Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 10000
- basebet = balance/fraction
- nextbet = basebet
- bethigh = true
- chance = 49.95
- target = 500000
- james = balance
- botbuddy = 0
- him = balance
- resetstats()
- function dobet()
- if !win then
- botbuddy+=1
- bethigh = !bethigh
- else
- botbuddy = 0
- end
- if (botbuddy==1) then
- nextbet = previousbet*2
- end
- if (botbuddy==3) then
- nextbet = previousbet*3
- end
- if (botbuddy==7) then
- nextbet = previousbet*4
- end
- if (botbuddy==10) then
- nextbet = previousbet*5
- botbuddy = 0
- end
- if (nextbet==nil) then
- nextbet = previousbet
- end
- if balance>him then
- nextbet = balance/fraction
- botbuddy = 0
- end
- if (balance>(him+basebet)) then
- him = balance
- end
- if balance>james then
- nextbet = balance/fraction
- botbuddy = 0
- james = balance
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement