Skip to content

Instantly share code, notes, and snippets.

View saibaba786's full-sized avatar

Ghost67787 saibaba786

View GitHub Profile
@dsetzer
dsetzer / climb3-v1.5-dice.js
Last active August 17, 2020 06:03
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 }
};
Object.entries(config).forEach((c) => window[c[0]] = c[1].value);