MyDiceBot - Recommended Low-Risky script for playing MagicDice - magicdice-regression.lua

in #gambling7 years ago (edited)

mydicebot-steemit.png

MyDiceBot - Recommended Low-Risky script for playing MagicDice - magicdice-regression.lua

Screenshot proof - Betting on MagicDice and profit!

mydicebot-magicdice-script-bet.png

Download MyDiceBot

You could adjust 'basebet' by yourself as required, 0.1, 0.162, 1, or 10, what ever, just no less than 0.1

You could adjust each stopping condition as required, including:

  • profit
  • wins
  • bets
  • currentstreak

Make sure you have enough balance (STEEM or SBD) in you account, to guarantee the worst situation of loss streaks

--[[
    This script doubles the bet after a loss but starts at a very high chance of success:  94%.  
    After each bet the chance reduces enough to bring equilibrium to profit but stops reducing chance at 49.5%.  
    First loss goes from 94% to 67%, then 57% and then gradually lower and closer to 49.5%.  
    It basically buys you a few more higher probability roles before the same old 49.5% martingale.
    author: grendel25aaaaa
    link: https://bot.seuntjie.com/scripts.aspx?id=38
]]

-- You could just use Sleep(n) to use LUAs built in sleep function. 
-- But this one will have the same result without killing your CPU.
function sleep(n)
    t0 = os.clock() 
    while os.clock() - t0 <= n do end
end

-- init
chance = 94
basebet = 1
bethigh = false
lossstreakcount = 0 -- sample: user-defined lossstreakcount.
nextbet = basebet

-- do bet and let's rock
function dobet()

    -- some sites limit bet latency due to the low bet amount.
    -- enable it and avoid to be banned, just in case.
    -- eg. 2 means sleeping 2 seconds
    -- sleep(2)

    -- adjust the stopping condition of session profit.
    if profit >= 10.0 then
        print("profit done, so stop.")
        stop()
    end

    -- adjust the stopping condition of wins.
    if wins >= 1000 then
        print("wins done, so stop.")
        stop()
    end

    -- adjust the stopping condition of bets. 
    if (bets >= 5000) then 
        print("bets done, so stop.")
        stop()
    end

    -- adjust the stopping condition of loss streak. 
    -- eg. -10 means 10 loss streak
    if (currentstreak <= -10) then
        print("10 loss streak, so stop.")
        stop()
    end

    -- if win, reset bet to base amount.
    if (win) then
        chance = 94
        nextbet = basebet
        lossstreakcount = 0
        print("WIN")
    end

    -- if loss, 
    -- first loss goes from 95% to 67%, 
    -- then 57% and then gradually lower and closer to 49.5%.
    if (!win) then
        lossstreakcount += 1
        if (lossstreakcount > 1) then
            nextbet = previousbet*2
            chance = (1/(((nextbet+(nextbet-basebet))/nextbet)))*100
            if chance < 49.5 then chance = 49.5 end
            bethigh = !bethigh
            print ("LOSE")
        else
            nextbet = previousbet*2
            chance = (1/(((basebet+nextbet))/nextbet))*100
            if chance < 49.5 then chance = 49.5 end
            bethigh = !bethigh
            print ("LOSE")
        end
    end
end

Have fun by playing MagicDice

magic-dice-320.png

Quote

  • "Gambling is gambling no matter what you do or how good your strategy is. The house always wins if you keep playing. Winners know when to stop."
  • "Like any human, we make mistakes, and like any program, the bot is bound to have a few bugs. Use the bot at your own risk. "

Disclaimer

  • This is still gambling. The bot is not guaranteed to win.
  • Please do not gamble more than you can afford to lose.
  • The bot has a lot of settings, and we cannot test each and every combination.
  • The bot might behave unpredictable and unreliably with certain combinations of settings.
  • Certain actions from the server might also result in unexpected behavior.
  • We cannot be held responsible for any losses incurred while using the bot.

Legal

  • It is your obligation to ensure compliance with any legislation relevant to your country of domicile regarding online gambling.
Sort:  

Congratulations @mydicebot! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

You published more than 40 posts. Your next target is to reach 50 posts.

Click here to view your Board
If you no longer want to receive notifications, reply to this comment with the word STOP

To support your work, I also upvoted your post!

Support SteemitBoard's project! Vote for its witness and get one more award!