--Script defaults to betting zero on losing streaks, and profits on 3 winning
streaks (I found 4+ winning streaks to be more unstable).
--I am giving script away for free. If you find improvements please do share! And
if you do make a good bunch of BTC also feel free to tip me @
1ErzznzHFFNXkbpakgN8GvZAi9GEbzGBsV
--Initial conditions
chance=50       --win chance
basemult = 0.00001      --risks 1% of balance
basebet = balance*basemult
nextbet = basebet
mult=1.5            --win multiplier
rollnum=0           --set starting value for max rolls
rollmax=1000        --max rolls
bethigh=true        --starts at betting high
winstreak=3     --0 bet after win streak of...
function dobet()
basebet=balance*basemult     --adjusts for scaling purposes
if lastBet.Roll <= 50 then   --switches high/low from prev roll
bethigh=false
else
bethigh=true
end
rollnum=rollnum + 1
if rollnum==rollmax then
stop()
else
  if !win then
  nextbet=0
  else
     if currentstreak==1 then
     nextbet=basebet
     else
       if currentstreak==(winstreak+1) then
            nextbet = 0
       else
          if currentstreak==2 then
          bethigh=!bethigh
          nextbet=previousbet*mult
          else
          nextbet=previousbet*mult
          end
       end
     end
  end
end
end