Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bethigh = false
- good = balance*3
- min = 49.95
- max = 49.9
- chance = max
- lol = balance*2
- base = balance/3
- nextbet = base
- box = 0
- bit = 0
- bid = 0
- function dobet()
- if win then
- bit+=1
- else
- box+=1
- bid+=1
- end
- if (box > 0) and (chance==max) then
- nextbet = balance/1200
- chance = min
- box = 0
- end
- if (bid > 1) and (chance==min) then
- nextbet = previousbet*2
- bid = 0
- end
- if balance > lol and win then
- nextbet = base
- chance = max
- lol = balance*2
- resetstats()
- end
- if balance > good then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement