create account

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

View this thread on: hive.blogpeakd.comecency.com
· @mydicebot · (edited)
$0.24
MyDiceBot - Recommended Low-Risky script for playing MagicDice - magicdice-regression.lua
![mydicebot-steemit.png](https://cdn.steemitimages.com/DQmWFCtqWW9fykYzmQmmYvdyAB4EZ15amgj1DNhFq31ijXN/mydicebot-steemit.png)

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

## Screenshot proof - Betting on [MagicDice](https://magic-dice.com/?ref=mydicebot) and profit!
![mydicebot-magicdice-script-bet.png](https://cdn.steemitimages.com/DQmYdTpfYso4YdX7QcCtC8GaSu5nVQa8Ra9YUFtaDtwbRuk/mydicebot-magicdice-script-bet.png)

# Download MyDiceBot
* https://mydicebot.com

#### 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



```lua
--[[
    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
```

* Thanks to [MagicDice](https://magic-dice.com/?ref=mydicebot)

# Have fun by playing [MagicDice](https://magic-dice.com/?ref=mydicebot)

[![magic-dice-320.png](https://cdn.steemitimages.com/DQmZibEn4FEZrfoYD6KPgA8ySDfKLWVtv7qicjCqFpkXYDn/magic-dice-320.png)](https://magic-dice.com/?ref=mydicebot)

# 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.
👍  , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authormydicebot
permlinkmydicebot-recommended-low-risky-script-for-playing-magicdice-magicdice-regression-lua
categorygambling
json_metadata{"image":["https://cdn.steemitimages.com/DQmWFCtqWW9fykYzmQmmYvdyAB4EZ15amgj1DNhFq31ijXN/mydicebot-steemit.png","https://cdn.steemitimages.com/DQmYdTpfYso4YdX7QcCtC8GaSu5nVQa8Ra9YUFtaDtwbRuk/mydicebot-magicdice-script-bet.png","https://cdn.steemitimages.com/DQmZibEn4FEZrfoYD6KPgA8ySDfKLWVtv7qicjCqFpkXYDn/magic-dice-320.png"],"tags":["gambling","mydicebot","magicdice","utopian-io","blog"],"app":"steemit/0.1","format":"markdown","links":["https://magic-dice.com/?ref=mydicebot","https://mydicebot.com"]}
created2019-01-15 11:37:27
last_update2019-01-15 12:01:54
depth0
children5
last_payout2019-01-22 11:37:27
cashout_time1969-12-31 23:59:59
total_payout_value0.198 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,536
author_reputation4,401,015,603,033
root_title"MyDiceBot - Recommended Low-Risky script for playing MagicDice - magicdice-regression.lua"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,405,552
net_rshares447,422,182,543
author_curate_reward""
vote details (24)
@portugalcoin ·
$8.43
Thank you for your contribution @mydicebot.

Your tutorial is very small and does not explain what you have developed.
In a tutorial it's necessary to explain what was developed so that the reader learns with his contribution.
Please follow the suggestions in your next tutorial. Thank you.

---- 
Need help? Write a ticket on https://support.utopian.io/. 
Chat with us on [Discord](https://discord.gg/uTyJkNm). 
[[utopian-moderator]](https://join.utopian.io/)
👍  , , , , , , , , ,
properties (23)
authorportugalcoin
permlinkre-mydicebot-mydicebot-recommended-low-risky-script-for-playing-magicdice-magicdice-regression-lua-20190115t223126686z
categorygambling
json_metadata{"tags":["gambling"],"users":["mydicebot"],"links":["https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-01-15 22:31:27
last_update2019-01-15 22:31:27
depth1
children2
last_payout2019-01-22 22:31:27
cashout_time1969-12-31 23:59:59
total_payout_value6.334 HBD
curator_payout_value2.097 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length460
author_reputation598,828,312,571,988
root_title"MyDiceBot - Recommended Low-Risky script for playing MagicDice - magicdice-regression.lua"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,427,861
net_rshares14,162,651,235,644
author_curate_reward""
vote details (10)
@mydicebot ·
thanks for reviewing, voting u.
properties (22)
authormydicebot
permlinkre-portugalcoin-re-mydicebot-mydicebot-recommended-low-risky-script-for-playing-magicdice-magicdice-regression-lua-20190116t110444378z
categorygambling
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["gambling"],"users":[],"links":[],"image":[]}
created2019-01-16 11:04:45
last_update2019-01-16 11:04:45
depth2
children0
last_payout2019-01-23 11:04:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation4,401,015,603,033
root_title"MyDiceBot - Recommended Low-Risky script for playing MagicDice - magicdice-regression.lua"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,450,142
net_rshares0
@utopian-io ·
Thank you for your review, @portugalcoin! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-mydicebot-mydicebot-recommended-low-risky-script-for-playing-magicdice-magicdice-regression-lua-20190115t223126686z-20190118t084349z
categorygambling
json_metadata"{"app": "beem/0.20.9"}"
created2019-01-18 08:43:51
last_update2019-01-18 08:43:51
depth2
children0
last_payout2019-01-25 08:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation152,955,367,999,756
root_title"MyDiceBot - Recommended Low-Risky script for playing MagicDice - magicdice-regression.lua"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,544,624
net_rshares0
@steem-ua ·
#### Hi @mydicebot!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your **UA** account score is currently 1.121 which ranks you at **#49394** across all Steem accounts.
Your rank has dropped 141 places in the last three days (old rank 49253).

We curated this post of yours in our last Algorithmic Curation Round, which included the curation of in total 186 contributions. Unfortunately, your post ranked last, at **#186**.
##### Evaluation of your UA score:

:* Only a few people are following you, try to convince more people with good work.
* The readers like your work!
* Try to improve on your user engagement! The more interesting interaction in the comments of your post, the better!


**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-mydicebot-recommended-low-risky-script-for-playing-magicdice-magicdice-regression-lua-20190120t180549z
categorygambling
json_metadata"{"app": "beem/0.20.14"}"
created2019-01-20 18:05:51
last_update2019-01-20 18:05:51
depth1
children0
last_payout2019-01-27 18:05:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length830
author_reputation23,214,230,978,060
root_title"MyDiceBot - Recommended Low-Risky script for playing MagicDice - magicdice-regression.lua"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,673,391
net_rshares0
@steemitboard ·
Congratulations @mydicebot! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@mydicebot/posts.png?201901151215</td><td>You published more than 40 posts. Your next target is to reach 50 posts.</td></tr>
</table>

<sub>_[Click here to view your Board](https://steemitboard.com/@mydicebot)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>


To support your work, I also upvoted your post!


> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-mydicebot-20190115t125020000z
categorygambling
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-01-15 12:50:21
last_update2019-01-15 12:50:21
depth1
children0
last_payout2019-01-22 12:50:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length796
author_reputation38,975,615,169,260
root_title"MyDiceBot - Recommended Low-Risky script for playing MagicDice - magicdice-regression.lua"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,407,975
net_rshares0