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