View basic_martingale.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 = 49.5 | |
multiplier = 2 | |
basebet = 0.00000010 | |
bethigh = false | |
function dobet() | |
if profit >= 0.1 then | |
stop() | |
end | |
View highChanceRegressionMartingaleVariation.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
--[[ | |
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: grendel25 | |
link: https://bot.seuntjie.com/scripts.aspx?id=38 | |
]] |
View index.json
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
[ | |
{ | |
"name": "Basic Martingale", | |
"lang": "lua", | |
"author": "", | |
"url": "https://gist.github.com/mydicebot/155ca3c1ff54c6b6707d2dc869154da0" | |
} | |
] |
View bot-doc-internal-variables-functions.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
--[[ Internal Variables ]] | |
--[[ FORMAT TEMPLATE | |
Variable: | |
Type: | |
Permission: | |
Purpose: | |
]] | |
--[[ Internal Functions ]] | |
--[[ FORMAT TEMPLATE |
View bot-chance-10-sample.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 = 10 | |
nextbet = 0.00001000 | |
basebet = 0.00001000 | |
installBet = 0.00001000 | |
X = 1.101 | |
memberbet = 0 | |
breakpoint = 0 | |
bethigh = false | |
game = true | |
regame = true |
View bot-regression-sample.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
--[[ | |
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 | |
]] | |
-- You could just use Sleep(n) to use LUAs built in sleep function. |
View slow-safe-sample.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
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 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; |
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 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 |
OlderNewer