Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- more = balance
- fraction = 1600
- basebet = balance/fraction
- nextbet = basebet
- winn = 0
- wyn = 0
- chance = 49.95
- lol = (math.random(1,2))
- bethigh = true
- target = balance*10
- function dobet()
- if (win) then
- winn+=1
- wyn+=1
- end
- if (winn == 2) then
- nextbet = previousbet*2
- winn = 0
- else
- nextbet = previousbet
- end
- if (wyn == 3) then
- nextbet = previousbet*2
- wyn = 0
- else
- nextbet = previousbet
- end
- if (balance > more) and win then
- nextbet = basebet
- more = balance
- end
- if (balance > target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement