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 / slow-safe-sample.lua
Last active April 2, 2020 07:47
show 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-regression-sample.lua
Last active April 2, 2020 07:46
regression sample #MyDiceBot#
--[[
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.
@mydicebot
mydicebot / bot-chance-10-sample.lua
Last active April 2, 2020 07:44
chance 10 sample #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
@mydicebot
mydicebot / bot-doc-internal-variables-functions.lua
Last active April 2, 2020 07:33
bot doc internal variables functions #MyDiceBot#
--[[ Internal Variables ]]
--[[ FORMAT TEMPLATE
Variable:
Type:
Permission:
Purpose:
]]
--[[ Internal Functions ]]
--[[ FORMAT TEMPLATE
@mydicebot
mydicebot / index.json
Last active March 29, 2020 06:01
index
[
{
"name": "Basic Martingale",
"lang": "lua",
"author": "",
"url": "https://gist.github.com/mydicebot/155ca3c1ff54c6b6707d2dc869154da0"
}
]
@mydicebot
mydicebot / highChanceRegressionMartingaleVariation.lua
Last active April 2, 2020 07:30
High Chance Regression Martingale Variation #MyDiceBot#
--[[
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
]]
@mydicebot
mydicebot / basic_martingale.lua
Last active April 2, 2020 07:29
Basic Martingale #MyDiceBot#
chance = 49.5
multiplier = 2
basebet = 0.00000010
bethigh = false
function dobet()
if profit >= 0.1 then
stop()
end