Bitcoin Forum
July 22, 2024, 06:18:42 PM *
News: Help 1Dq create 15th anniversary forum artwork.
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Gambling / Re: A non-martingale PrimeDice script! So far so good! on: September 07, 2017, 07:19:37 AM
Ok I have tried my best to provide a bit more details  Grin

Code:
--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.01 --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
2  Economy / Gambling / A non-martingale PrimeDice script! So far so good! on: September 06, 2017, 05:10:57 PM
Good day All!

I have made a stable LAU script (for DiceBot) after a month of testing everything from martingale (always lose) to probability sniping (which always made you lose your whole balance in two losing bets). The script I have doesn't succumb to losing streaks as it defaults to betting zero in such cases. It profits on 3x winning streaks (4 and up seems to be more unstable).
Feel free to edit the script!  Grin

I am giving it 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    Smiley

Kind regards and may you beat the dice!  Cool

WynBrew

Code:
chance=50
basebet=0.00000001 --only for starters
nextbet=basebet
mult=1.5 --win multiplier
rollnum=0 --set starting value for max rolls
rollmax=1000 --max rolls
bethigh=true


function dobet()

basebet=balance*0.01 --comment out if too risky for you

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==4 then
      nextbet=0
      else
        if currentstreak==2 then
        bethigh=!bethigh
        nextbet=previousbet*mult
        else
        nextbet=previousbet*mult
        end
      end
    end
  end
end
end
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!