View hunt-3-different-specific-numbers.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
View demo-resume-function.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chance = 1 | |
multiplier = 2 | |
basebet = 0.00000001 | |
bethigh = false | |
nextbet = basebet | |
my_variable = 1 | |
function sleep(n) | |
t0 = os.clock() |
View demo-start-function.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chance = 1 | |
multiplier = 2 | |
basebet = 0.00000001 | |
bethigh = false | |
nextbet = basebet | |
my_variable = 1 | |
function sleep(n) | |
t0 = os.clock() |
View optimal-profit-999dice.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Sleep function | |
function sleep(n) | |
t0 = os.clock() | |
while os.clock() - t0 <= n do end | |
end | |
-- Init Globals | |
basebet = balance * 100e-8 -- Satoshi Base (BTC ONLY) 0.00000100 use 10e-8 for small bal | |
chance = 50 |
View basic.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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): |
View bot-slow-safe-sample.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
View bot-regression-sample.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************ | |
This script doubles the bet after a loss but starts at a very high chance of success: 95%. | |
After each bet the chance reduces enough to bring equilibrium to profit but stops reducing chance at 49.5%. | |
First loss goes from 95% 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 | |
*************************************/ | |
// init |
View bot-doc-internal-variables-functions.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Internal Variables */ | |
/* FORMAT TEMPLATE | |
Variable: | |
Type: | |
Permission: | |
Purpose: | |
*/ | |
/* Internal Functions */ | |
/* FORMAT TEMPLATE |
View bot-chance-10-sample.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chance = 10; | |
nextbet = 0.00001000; | |
basebet = 0.00001000; | |
installBet = 0.00001000; | |
X = 1.101; | |
memberbet = 0; | |
breakpoint = 0; | |
bethigh = false; | |
game = true; | |
regame = true; |
View basic.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |
NewerOlder