Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- more = balance*1.0003
- basebet = balance/20000
- nextbet = basebet
- long = balance
- longer = balance
- loss = 0
- winn = 0
- lil = 0
- xim = 0
- xix = 0
- target = balance*25
- chance = 49.95
- function dobet()
- basebet = balance/20000
- if !win then
- loss+=1
- xix+=1
- lil+=1
- else
- xim+=1
- lil+=1
- winn+=1
- end
- if (winn==3) then
- winn = 0
- nextbet = previousbet*2
- end
- if (loss ==3) then
- loss = 0
- nextbet = previousbet*2
- end
- if (balance > more) then
- nextbet = basebet
- more = balance*1.0003
- end
- if (balance > target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement