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