This file contains hidden or 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
| var map = {}; | |
| chat = document.getElementsByClassName("form-control")[ 0 ]; | |
| function getBalance() { | |
| var newBalance = document.querySelector("#top-bar > div > div > div.balance-container.nav-item > span:nth-child(2)").innerText; | |
| var conBalance = String(newBalance.replace(",", ".")); | |
| return Number(conBalance); | |
| } |
This file contains hidden or 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
| var config = { | |
| headerCommon: { label: "Common Settings", type: "noop", value: "" }, | |
| 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 }, | |
| headerCond: { label: "Conditions Settings", type: "noop", value: "" }, |
This file contains hidden or 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
| var config = { | |
| clientSeed: { label: "Client seed", type: "text", value: "123" }, | |
| stopiflost: { value: 0, type: 'text', label: 'Protect Balance' }, | |
| } | |
| var protect = config.stopiflost.value; | |
| var now = (this.balance / 100); | |
| const baseBet = 300 /* In satoshi, which means it will place 2 bits */ | |
| const target = 1.5 |
This file contains hidden or 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
| var config = { | |
| list_bet: { | |
| value: 'list1', type: 'radio', label: 'Pick Bet List', | |
| options: { | |
| list1: { value: '10, 9, 7, 6, 5, 20, 18, 16, 14, 32, 20, 30, 26, 22, 18, 14, 20, 15, 20, 25, 45', type: 'text', label: 'Bets 1' }, | |
| list2: { value: '320, 170, 37, 76, 51, 50, 118, 16, 141, 72, 60, 30, 26, 77, 18, 14, 20, 35, 20, 85, 145', type: 'text', label: 'Bets 2' }, | |
| list3: { value: '320, 170, 37, 76, 51, 50, 118, 16, 141, 72, 60, 30, 26, 77, 18, 14, 20, 35, 20, 85, 145', type: 'text', label: 'Bets 3' }, | |
| }, | |
| }, | |
| list_target: { |
This file contains hidden or 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
| var config = { | |
| baseBet: { label: "Base bet", type: "balance", value: 100 }, // how many satoshis to bet initially | |
| target: { label: "Target", type: "multiplier", value: 2 }, // target multiplier | |
| betMultiplier: { label: "Bet multiplier", type: "multiplier", value: 2 }, // what to multiply the bet size by when we lose a wager | |
| stopBalance: { label: "Stop if profit above[0 = OFF]", type: "balance", value: 100000 }, | |
| stopLoss: { label: "Stop if lose more than[0 = OFF]", type: "balance", value: -100000 }, | |
| } | |
| var engine = this | |
| var highBalance = this.balance; |
This file contains hidden or 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
| var config = { | |
| wager: { label: "Wager", type: "balance", value: 100 }, | |
| min_pay: { label: "Min payout", type: "multiplier", value: 5 }, | |
| max_pay: { label: "Max payout", type: "multiplier", value: 40 }, | |
| max_loss: { label: "Max lose", type: "balance", value: -100000 }, | |
| bets_prog: { label: "Progression betting", type: "checkbox", value: true }, | |
| prog_reset: { label: "Progression reset", type: "checkbox", value: false }, | |
| progression_bet_amount: { label: "Bet Progression", type: "balance", value: 100 }, | |
| }; |
This file contains hidden or 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
| var rolls = 0 | |
| var history = []; | |
| var super_nyans = 0, nyans = 0; | |
| while (true) { | |
| rolls++; | |
| const {multiplier} = await this.bet(100, 1.01); | |
This file contains hidden or 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
| var config = { | |
| basebet: { label: "Base Bet", type: "balance", value: 100 }, | |
| catchBet: { label: "Catch Bet", type: "balance", value: 3000 }, | |
| normalTarget: { label: "Base Target", type: "multiplier", value: 40 }, | |
| catchTarget: { label: "Catch Target", type: "multiplier", value: 100 }, | |
| catchRolls: { label: "Catch Rolls [-1 = OFF]", type: "number", value: 15 }, | |
| }; | |
| var basebet = config.basebet.value, catchBet = config.catchBet.value; | |
| var normalTarget = config.normalTarget.value, catchTarget = config.catchTarget.value, catchRolls = config.catchRolls.value; |
This file contains hidden or 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
| var config = { | |
| baseBet: { label: "Base bet", type: "balance", value: 200 }, | |
| target: { label: "Target", type: "multiplier", value: 20 }, | |
| multiplyBy: { label: "Multiply by", type: "multiplier", value: 2 }, | |
| addupmultiply: { label: "Add-up/Multiply", type: "checkbox", value: false }, | |
| multiplyByExtra: { label: "Multiply by Extra", type: "multiplier", value: 2 }, | |
| skipsAmount: { label: "Skips Amount", type: "number", value: 10 }, | |
| maxLoses: { label: "Max Loses", type: "number", value: 10 }, | |
| maxLosesExtra: { label: "Max Loses Extra", type: "number", value: 10 }, | |
| minProfit: { label: "Min Profit", type: "balance", value: -28000000 }, |
This file contains hidden or 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
| var config = { | |
| baseBet: { label: "Base bet", type: "balance", value: 200 }, | |
| target: { label: "Target", type: "multiplier", value: 10 }, | |
| multiplyBy: { label: "Multiply by", type: "multiplier", value: 3 }, | |
| addupmultiply: { label: "Add-up/Multiply", type: "checkbox", value: false }, | |
| multiplyByExtra: { label: "Multiply by Extra", type: "multiplier", value: 3 }, | |
| skipsAmount: { label: "Skips Amount", type: "number", value: 12 }, | |
| maxLoses: { label: "Max Loses", type: "number", value: 9 }, | |
| maxLosesExtra: { label: "Max Loses Extra", type: "number", value: 10 }, | |
| minProfit: { label: "Min Profit", type: "balance", value: -28000000 }, |