Skip to content

Instantly share code, notes, and snippets.

View ruzli's full-sized avatar

Ruzli ruzli

  • Russian Federation, Moscow
View GitHub Profile
@ruzli
ruzli / 5 placed bets 4 skips.js
Created September 6, 2018 14:49
baseskips which increasing after 5 placed bets
const baseBet = 1
const baseTarget = 10
const baseSkips = 4
const resetSkipsAt = 12
const betsPlaced = 5
const multiplierBet = 2
const maxLossBeforeMultiplierBet = 15
const maximumProfit = this.balance/100 * 1.5 /* You can put just any value here */
const stopLoss = 0
const maximumBet = 128
@ruzli
ruzli / strategy 5x 3 times after 10x.js
Created September 6, 2018 14:50
strategy 5x 3 times after 10x
const baseBet = 1
const baseTarget = 10
const multiplierBet = 2
const maxProfit = 100000
const sleepTime = 0
let bet = baseBet
let target = baseTarget
let lostbet = baseBet
let lost = 0
@ruzli
ruzli / strategy 5x 10x skip.js
Created September 6, 2018 14:51
strategy 5x 10x skip
const baseBet = 1
const baseTarget = 5
const multiplierBet = 2
const maxProfit = 10000
let bet = baseBet
let target = baseTarget
let lostbet = baseBet
let lost = 0
let win = 0
@ruzli
ruzli / Greedy Scrooge Recovery.js
Created September 15, 2018 13:37
Greedy Scrooge
const baseBet = 1 /* Just starting value in bit, will recalculated automatically according balance divide 100 * percentBet value */
const baseTarget = 1.1 /* Place bets with this odd */
var percentBet = 1 /* Percent from balance to play on */
const multiplierBet = 3 /* Recovery from loss on 1.1x */
const baseDelay = 2 /* To prevent bad streaks */
const baseSkips = 29 /* Skip bad periods */
const maximumQueue = 1
const regularBet = 1
const regularTarget = 1.01
@ruzli
ruzli / something random by improved by me
Created September 15, 2018 13:39
something random by improved by me
const baseBet = 100 /* in Satoshies */
const baseTarget = 1.41
const betMultiplier = 3.5
const addictionTarget = 0.1 /* Increasing target on each next loss on gateways, set to 0 if don't need it */
const maximumBet = 20 /* Bits */
const maxLoss = 200 // Below these value in bits - stop script
const maxProfit = 5000 // Above these value in bits = stop script
const playAfterLossStreak = 2
@ruzli
ruzli / Simple martingale with reset.js
Last active September 24, 2018 11:57
Simple martingale with reset bet after X in a row streak
const baseBet = 100 // how many satoshis to bet initially
const target = 2.00 // target multiplier
const betMultiplier = 2 // what to multiply the bet size by when we lose a wager
const stopGameAfterLoss = 7 /* Trigger will lead to drop/stop script */
const sleepTimeInMS = 100
const dropInsteadOfStopScript = true /* stop script or drop losses and continue play */
const changeSeed = 3 /* How much losses obtain, and then change seed to decrease chance of big streak, 0 to disable */
const engine = this
/* Simulated script */
const baseBet = 200 // how many satoshis to bet initially
const target = 2.00 // target multiplier
const betMultiplier = 2 // what to multiply the bet size by when we lose a wager
let balance = 2000 /* Simulated Balance */
const skipscounter = 9
let lossCount = 0
let skips = 0
const streakToWait = 12
let rolls = 0
let lossCount = 0
while (lossCount <= streakToWait) {
rolls++
const { multiplier } = await this.bet(100, 1.01)
if (multiplier < 2){lossCount++} else {lossCount = 0}
@ruzli
ruzli / 1.3x plays, on loss 1.1x 3 rolls and bet multiplier 5.js
Last active January 6, 2019 20:08
1.3x plays, on loss 1.1x 3 rolls and bet multiplier 5
const baseBet = 1
const baseTarget = 1.1
const betMultiplier = 5
const stopGameAfterLoss = 2 /* Trigger will lead to drop/stop script */
const dropInsteadOfStopScript = true /* stop script or drop losses and continue play */
const changeSeed = 3 /* How much losses obtain, and then change seed to decrease chance of big streak, 0 to disable */
const lossTarget = 1.3
const lossRepeatTimes = 3
let lossCount = 0
@ruzli
ruzli / MartingaleEmulator.js
Created January 23, 2019 17:31
In-game Emulator
/* Simulated script */
var baseBet = 100 // how many satoshis to bet initially
var target = 25.4 // target multiplier
var betMultiplier = 1.05 // what to multiply the bet size by when we lose a wager
var balance = 50000 /* Simulated Balance */
var drop_after_streak = 100 /* Drop bet size after this value. 0 to disable */
var proximity = 1.0
var STW = 10
//***********
let minProfit = -balance