Skip to content

Instantly share code, notes, and snippets.

View ruzli's full-sized avatar

Ruzli ruzli

  • Russian Federation, Moscow
View GitHub Profile
const baseBet = 100
const target = 2.0
const skips = 2 // number to skips after loss
const startHighPlaceAt = 7 // after 6 loss, on 7th time it will place high bets
const highLossBaseBet = 2500 // in satoshi, starting base of high bets
const betMultiplier = 2 // How much to multiply high bets
const changeSeed = true // Change seed after loss
const changeSeedOnLossAt = 2 // change seed after N loss and more
const stopLoss = 0 // Stop script if balance will go under this value, 0 to disable
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}
const baseBet = 100 // how many satoshis to bet initially
const target = 2 // target multiplier
const TargetProfit = 300000
const dontLoseThan = 2500 // Stopper
const betMultiplier = 1
const engine = this
let lossCount = 1
/* 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 baseBet = 100
const target = 2
const resetTargetAt = 10
const resetTargetTo = 2
const betMultiplier = 0.5
const increaseTargetEvery = 1
const TargetProfit = 2000
const dontLoseThan = 500
@ruzli
ruzli / PerfectPercent
Created August 14, 2018 12:08
Playing on balance based percent bets
const baseBet = 1 // how many satoshis to bet initially
const target = 2 // target multiplier
const TargetProfit = 30000
const dontLoseThan = 200 // Stopper
let ubalance = this.balance
this.log(ubalance)
const engine = this
//var betBits = parseInt(Math.floor(baseBet));
this.log(`Starting martingale with a base bet of ${baseBet} satoshis.`)
@ruzli
ruzli / safe_stairs.js
Last active April 18, 2019 01:41
One of the safest scripts made, with simple logic [SAFE][1500 bits+]
const baseBet = 1
const baseTarget = 1.5
const maximumBet = 500
const multiplierBet = 3
const minimalToRunScript = 300
let losses = 1
let bet = 1
let engine = this
let tbet = bet
@ruzli
ruzli / awaiting_streaks.js
Last active April 18, 2019 01:37
Skipping until target was found [TOOLS]
const baseBet = 100 /* Amount of bits to bet */
const target = 6 /* Anything above this resets the counter */
const engine = this
let _target = target
let _baseBet = baseBet
let distance = 0
let ourTarget = 0
let danger = 0
while(true) {
@ruzli
ruzli / Slots
Created August 14, 2018 12:11
Play 3 times and stop, manual + auto in one hand
const baseBet = 200
const target =15
const betMultiplier = 0.5
const repeatBetTimes = 2
const increaseTargetEvery = 3
const TargetProfit = 5000
const dontLoseThan = 0
let repeat = 3
const engine = this
@ruzli
ruzli / SuperMartingale
Created August 14, 2018 12:14
Places high bet after only 11 loses in a row
const baseBet = 1 // how many bits to bet initially
const baseTarget = 2
const betMultiplier = 2 // what to multiply the bet size by when we lose a wager
let target =0 // target multiplier
const engine = this
let lossCount = 0
this.log(`Starting super martingale with a base bet of ${baseBet} satoshis.`)