Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- more = balance
- long = balance
- fraction = 5
- bethigh = false
- chance = 49.95
- basebet = balance/fraction
- nextbet = basebet
- toss = 0
- tossy = 0
- lossy = 0
- function dobet()
- if (balance<=(more/(basebet*4))) then
- more=balance
- end
- if (balance>=(more+(basebet*4))) then
- nextbet = previousbet*2
- more = balance
- end
- if (balance>=(long+(basebet*8))) then
- nextbet = basebet
- long = balance
- more = balance
- end
- if (nextbet==nil) then
- nextbet = previousbet
- end
- if lastBet.Roll < 49.95 then
- bethigh = false
- else
- bethigh = true
- end
- if !win then
- toss+=1
- tossy+=1
- lossy+=1
- else
- toss = 0
- tossy = 0
- lossy = 0
- end
- if lastBet.Roll < 49.95 and lossy == 1 then
- bethigh = false
- lossy = 0
- end
- if lastBet.Roll > 49.95 and lossy == 1 then
- bethigh = false
- lossy = 0
- bethigh = true
- end
- if (toss == 2) then
- if (bethigh==false) or (bethigh==true) then bethigh=!bethigh
- toss = 0
- end
- end
- if (tossy == 5) then
- if (bethigh==false) or (bethigh==true) then bethigh=!bethigh
- tossy = 0
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement