Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 49.95
- lol = 0
- bethigh = false
- good = 20000
- nextbet = balance/100000
- basebet = balance/100000
- bal = balance
- zog = 0
- zim = 0
- zag = 0
- six = 0
- sit = 0
- function dobet()
- if (win) then
- chance = 49.95
- bethigh = false
- zog += 1
- zag += 1
- lol = 0
- zim = 0
- else
- lol += 1
- zim +=1
- zag = 0
- end
- if (lol==3) then
- nextbet = previousbet*2
- lol = 0
- bethigh = false
- chance = 49.95
- end
- if lastBet.Roll < 49 then
- six+=1
- else
- six = 0
- end
- if lastBet.Roll > 51 then
- sit+=1
- else
- sit = 0
- end
- if balance > bal and win then
- nextbet = basebet
- bal = balance
- end
- if (sit==4) then
- bethigh = true
- nextbet = previousbet*5
- sit = 0
- end
- if (six==4) then
- bethigh = false
- nextbet = previousbet*5
- six = 0
- end
- if balance > good then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement