Skip to content

Instantly share code, notes, and snippets.

View mydicebot's full-sized avatar
🏠
mydicebot.com

mydicebot

🏠
mydicebot.com
View GitHub Profile
@mydicebot
mydicebot / demo-resume-function.lua
Created April 25, 2020 05:58
Demo of resume() #mydicebot#
chance = 1
multiplier = 2
basebet = 0.00000001
bethigh = false
nextbet = basebet
my_variable = 1
function sleep(n)
t0 = os.clock()
@mydicebot
mydicebot / demo-start-function.lua
Last active April 25, 2020 10:59
Demo of start() #mydicebot#
chance = 1
multiplier = 2
basebet = 0.00000001
bethigh = false
nextbet = basebet
my_variable = 1
function sleep(n)
t0 = os.clock()
@mydicebot
mydicebot / hunt-3-different-specific-numbers.lua
Created April 27, 2020 06:20
Sample - Hunt 3 different specific numbers #mydicebot#
chance = 98
nextbet = 0.000001 --minimum required bet for the hunt
bethigh = false
currency = "Btc"
numbersToHunt = {99.99,77.77,0} --numbers you aim for
function dobet()
if containedInSet(lastBet.Roll, numbersToHunt) then
print(lastBet.Roll)
@mydicebot
mydicebot / basic.py
Last active April 18, 2021 06:53
Basic Sample #MyDiceBot#
# Sample script, you can code here and then 'Save As..' to another named file.
# Author: MyDiceBot
chance = 49.5
multiplier = 2
basebet = 0.00000001
bethigh = False
nextbet = basebet
def dobet(event):
@mydicebot
mydicebot / bot-slow-safe-sample.js
Created April 2, 2020 07:56
slow safe sample #MyDiceBot#
basebet = 0.01;
nextbet = 0.01;
bb = 0.01;
bb6 = 0.02;
pbet = 0.00000001;
pbet3 = 0.00000001;
pb3 = 1;
pb = 1;
pbb3 = 0;
pbb = 0;
@mydicebot
mydicebot / bot-doc-internal-variables-functions.js
Created April 2, 2020 07:53
doc internal variables function #MyDiceBot#
/* Internal Variables */
/* FORMAT TEMPLATE
Variable:
Type:
Permission:
Purpose:
*/
/* Internal Functions */
/* FORMAT TEMPLATE
@mydicebot
mydicebot / bot-chance-10-sample.js
Created April 2, 2020 07:52
chance 10 smaple #MyDiceBot#
chance = 10;
nextbet = 0.00001000;
basebet = 0.00001000;
installBet = 0.00001000;
X = 1.101;
memberbet = 0;
breakpoint = 0;
bethigh = false;
game = true;
regame = true;