Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 100
- basebet = balance/fraction
- base = basebet
- chance = 49.95
- nextbet = basebet
- bethigh = true
- oldbal = balance
- target = 5000
- sux = 0
- wage = 0
- ol = balance
- six = false
- box = basebet
- bot = 0
- fal = false
- vix = 0
- sox = 0
- resetstats()
- function dobet()
- if (balance>=(ol+(base*2))) then
- nextbet = previousbet*2
- six = true
- ol = balance
- end
- if (balance<=(ol-base)) and six==false then
- nextbet = basebet
- base = nextbet
- end
- if (balance<=(ol-base)) and six==true then
- nextbet = basebet
- base = nextbet
- ol = balance
- six = false
- end
- if !win then
- bot+=1
- vix+=1
- sox+=1
- else
- vix = 0
- bot = 0
- sox = 0
- end
- if bot>=3 then
- ol = balance
- bot = 0
- end
- if vix>=5 then
- bethigh = !bethigh
- vix = 0
- end
- if nextbet<basebet then
- nextbet = basebet
- end
- if balance<=nextbet*50 then
- nextbet = basebet
- end
- if bets>=8 then
- if ((bets-wins)>=((bets/2)-sox)) and !win and fal==false then
- box = lastBet.Amount
- nextbet = 0
- fal = true
- end
- if ((bets-wins)<=(bets/2)) and win and fal==true then
- nextbet = box*2
- fal = false
- end
- if box<=basebet then
- box = basebet
- end
- end
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement