Skip to content

Instantly share code, notes, and snippets.

@XclusiveDigital
XclusiveDigital / Raker-ether-dice.js
Last active October 25, 2022 03:30
Raker Script - [Ether-Dice.io]
var config = {
bet: { label: 'Bet', type: 'balance', value: 1},
baseTarget: { label: 'Base target', type: 'multiplier', value: 2 }
}
var currentTarget = config.baseTarget.value
var bets = 0;
var IOs = 0;
var total, State, profit, loss, init, prev
var Rake = (currentTarget / 2)
var Stat = ''
@XclusiveDigital
XclusiveDigital / ascent_dicebot.lua
Last active December 2, 2023 21:26
Ascent Dicebot
strategy = 3 --[[ Preset game rules and ascent_settings. 1 to turn off; setting it more than 1 will overrides base settings
...2 - Normal Mode for normal balance [>8000 bits]
...3 - Normal Mode for high balance [>16300 bits]
...4 - Alternative mode for multiplier 3, just for having more than common run
...5 - Early profit and later normal run for balance [>4500 bits]
...6 - High profit for medium numbers, for balance [>5000 bits] medium risk
...7 - 2x Mode, for low balance run [<2000 bits] low risk
...8 - 2x Mode, for medium balance run [<4000 bits], average risk
...9 - Soft strategy run, not long term, something like medium term. For balance [>2000 bits] low risk
]]
@XclusiveDigital
XclusiveDigital / CMH_RAN_SKIPS.lua
Last active May 7, 2020 00:28
DIcebot: CMH with Random Skips
function betSize(num)
return (10 ^ math.floor((math.log(num))/(math.log(10))))
end
function initiate()
balDiv = 100000
houseEdge = 1
baseBet = balance/balDiv -- betSize(balance/balDiv)
currBet = baseBet
minPayout = 2.01
maxPayout = 6.05
chance = 61
prebet1 = 0.000075
preroll1 = 3
base = prebet1*2
prebet = prebet1
preroll = preroll1
nextbet = prebet
betlimit = prebet*15
target = balance+5000
@XclusiveDigital
XclusiveDigital / cmh.lua
Created April 2, 2020 11:40
CMH Dicebot Script
-- CREDITS --
-- Original was made by DSetzer for BustaBit. --
-- https://gist.github.com/dsetzer/fb2a925098135c7a1ff95002b11ccc3e --
baseBet = 0
minPayout = 1.3
maxPayout = 4.5
incPayout = 1.5
currBet = baseBet
currPayout = minPayout
@XclusiveDigital
XclusiveDigital / climb3-v1.5-dice.js
Created March 21, 2020 14:40 — forked from dsetzer/climb3-v1.5-dice.js
Upgrade from climb-v2 script with more customization, compounding, and halving feature for bustadice.
var config = {
baseBet: { label: 'Base Bet', type: 'balance', value: 1000 },
minPayout: { label: 'Target Min', type: 'multiplier', value: 1.08 },
maxPayout: { label: 'Target Max', type: 'multiplier', value: 50.00 },
divPayout: { label: 'Target Div', type: 'multiplier', value: 0.80 },
compRate: { label: 'Compound %', type: 'multiplier', value: 0.02 },
compStep: { label: 'Compound At', type: 'multiplier', value: 1.10 },
betSpeed: { label: 'Bet Speed', type: 'multiplier', value: 100 }
};
let baseBet = config.baseBet.value, basePayout = config.minPayout.value, rate = config.compRate.value;