Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- more = balance
- 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()
- if !win then
- loss+=1
- xix+=1
- lil+=1
- winn = 0
- else
- loss = 0
- xim+=1
- lil+=1
- winn+=1
- end
- if xim>=2 or xix>=2 or lol>=3 then
- lil = 0
- xim = 0
- xix = 0
- nextbet = previousbet
- end
- if (xim == 1) and (xix==1) and (lil==2) then
- nextbet = previousbet*2
- end
- if (winn>=2) then
- winn = 0
- nextbet = previousbet*2.1
- end if (loss>=2) then
- nextbet = previousbet*2
- loss = 0
- end
- if (balance > (more)) then
- nextbet=basebet
- more = balance
- end
- if (balance > target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement