GitPedia

Mydicebot.github.io

★MyDiceBot★ - Ultimate Bitcoin Dice Bot. Bet More, Earn More!

From mydicebot·Updated June 26, 2026·View on GitHub·

* [https://mydicebot.com](https://mydicebot.com) * [MyDiceBot](https://mydicebot.com) is World #1 Cross-Platform Dicing Bot. * Multiple platforms are supported, including __Windows, Mac, Linux, Web, Terminal/Console, Android__ and __Raspberry Pi__. * Multiple blockchains are supported. * Multiple programming languages are supported such as __Lua, Javascript__ and __Python__. * [Open Source](https://github.com/mydicebot/mydicebot.github.io) and __Free Forever__. The project is written primarily in JavaScript, distributed under the GNU General Public License v3.0 license, first published in 2018. Key topics include: 999dice, 999doge, betking, bitcoin, bitsler.

Latest release: v21.5.15MyDiceBot Dogecoin Special Edition - v21.5.15
May 15, 2021View Changelog →

★MyDiceBot★ - Ultimate Bitcoin Dice Bot

Github All Releases
GitHub release
GitHub Release Date
GitHub license
GitHub stars
GitHub forks

  • https://mydicebot.com
  • MyDiceBot is World #1 Cross-Platform Dicing Bot.
  • Multiple platforms are supported, including Windows, Mac, Linux, Web, Terminal/Console, Android and Raspberry Pi.
  • Multiple blockchains are supported.
  • Multiple programming languages are supported such as Lua, Javascript and Python.
  • Open Source and Free Forever.

Desktop

Terminal/Console

Mobile

Raspberry Pi

Table Of Content

Download

Supporting Dice Sites (alphabet sequence)

Traditional

Blockchain - STEEM

TODO

Telegram Bot

Faucet

Mining

Exchange

Quick Start

  • Download MyDiceBot Binaries here: MyDiceBot Releases.

  • Different execution methods on different platforms.

    • Linux (Open Terminal)

      chmod +x mydicebot-linux
      
      ./mydicebot-linux
      
    • Mac (Open Terminal)

      chmod +x mydicebot-macos
      
      ./mydicebot-macos
      
    • Windows (Open Command Prompt)

      mydicebot-win.exe
      
  • Choose Dice Site, Input username/password/2FA/APIKey, then Login.

  • Bet and WIN.

How to run from source code directly

Ensure you install the latest version of docker and docker-compose

bash
git clone https://github.com/mydicebot/mydicebot.github.io.git mydicebot cd mydicebot bash start.sh

Features

  • Supported platforms: Windows, Mac, Linux, Web, Terminal/Console, Android and Raspberry Pi
  • Supported programming languages: Lua, Javascript and Python
  • Supported multiple dice-sites
  • Supported multiple strategies
  • New account registration
  • Existing account login
  • Betting statistics
  • Manual bet
  • Auto bet
  • Script bet (compatible with Seuntjies DiceBot scripts)
  • Script gist
  • Chat room MyDiceBot on Discord

Manual Bet

  • You can control every bet by yourself.

Auto Bet

  • Essential configurations are provided for betting automatically.

Script Bet

  • Lua programming language
  • JavaScript programming language
  • Python programming language
  • Compatible with the variables and functions of Seuntjie DiceBot's Lua script
  • Import script from gist (Github) easily

Internal Variables

  • Single Bet Info
VariableTypePermissionPurpose
basebetdoubleRead WriteShows the amount of the first bet. Only set for first bet.
previousbetdoubleRead OnlyShows the amount of the previous bet. Only set after first bet.
nextbetdoubleRead WriteThe amount to bet in the next bet. You need to assign a value to this variable to change the amount bet. Defaults to previousbet after first bet. Needs to be set before betting can start.
chancedoubleRead WriteThe chance to win when betting. Defaults to value set in advanced settings if not set. Need to set this value to change the chance to win/payout when betting.
bethighboolRead WriteWhether to bet high/over (true) or low/under(false). Defaults to true (bet high/bet over)
winboolRead OnlyIndicates whether the last bet you made was a winning bet (true) or a losing bet (false).
currentprofitdoubleRead OnlyShows the profit for the last bet made. This is not the amount returned. betting 1 unit at x2 payout, when winning, currentprofit will show 0.00000001 (returned =0.00000002), when losing, profit will show -0.00000001
currentstreakdoubleRead OnlyShows the current winning or losing streak. When positive (>0), it's a winning streak. When negative (<0) it's a losing streak. Can never be 0. Only set after first bet.
currentrolldoubleRead OnlyShow current roll information
lastbetobjectRead OnlyThis is an object containing more details about the previous bet, including the lucky number that was rolled, chance, amount, profit etc.
  • Current Session Info
VariableTypePermissionPurpose
balancedoubleRead OnlyLists your balance at the site you're logged in to.
betsintRead OnlyShows the number of bets for the current session.
winsintRead OnlyShows the number of wins for the current session.
lossesintRead OnlyShows the number of losses for the current session.
profitdoubleRead OnlyShows your session profit. Session is defined as the time since opening the current instance of bot or the last time you reset your stats in the bot.
currenciesstring arrayRead OnlyList the currencies that can be used at the current site, usually in the currency short code (btc, ltc, etc.).
currencystringRead WriteCan be used to change the currency to bet in using any value from the currencies list. Only values from the currencies list can be used.

Internal Functions

FunctionPurpose
dobet()The loop of bets
stop()Stop the bet
start()Start the bet (from very beginning) after stop()
resume()Resume the bet (from current stopping) after stop()
resetsession()Reset the session
resetstats()Reset the session
resetseed()Reset the client seed
sound(path_of_the_sound)Sound notificaiton
message(text, type='debug', expire=time_interval_value_in_ms)Message notification on the screen. Four types: "info", "success", "debug", or "error". Expire interval is 4000 ms by default, -1 for not hiding the message.
betinterval(ms)Bet Interval in milliseconds

Sample Code

  • Strategy: Basic Martingale
  • Using Lua
lua
chance = 49.5 multiplier = 2 basebet = 0.00000010 bethigh = false function dobet() if profit >= 0.1 then stop() end if win then nextbet = basebet else nextbet = previousbet * multiplier end end
  • Using Javascript
javascript
chance = 49.5; multiplier = 2; baseBet = 0.00000001; betHigh = false; function dobet() { if (win) { nextBet = basebet; } else { nextBet = previousbet * multiplier; } }
  • Using Python
python
chance = 49.5 multiplier = 2 basebet = 0.00000001 bethigh = False nextbet = basebet def dobet(event): if win: nextbet = basebet else: nextbet = previousbet * multiplier

Script Gist

Report Issue

License

  • GPL-3.0

Thanks

  • Special thanks to the open source project of Seuntjies DiceBot.
  • If you need simulation functions or advanced-autobet functions, we recommand Seuntjies DiceBot.

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.

Contact

Donation

  • BTC: 19Yw3Hs8zAidGEUNeEUM2r4tXLnrJDy7kN
  • ETH: 0x3d652737ad9906344C0fb9C693bD3917FDaa37dC
  • BCH: qpwukqk0a557yytlg9x9tl77qjh8lje03gyd73qgm6
  • DOGE: D9wMjdtGqsDZvjxWMjt66JLjE9E9nMAKb7
  • steemit: @mydicebot

Contributors

Showing top 3 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from mydicebot/mydicebot.github.io via the GitHub API.Last fetched: 6/28/2026