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 / reproduce 1.01x by 2x on loss
Created September 6, 2018 14:47
reproduce 1.01x by 2x on loss
const baseBet = 1
const baseTarget = 1.01
const multiplierBet = 5
const afterLostTarget = 1.25
const multiplierLossHunt = 1.0
let bet = baseBet
let target = baseTarget
let lostbet = baseBet
let formbet = baseBet
@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 / 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 / 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 / Heaven Hell.js
Created September 23, 2018 13:21
Heaven Hell
/*
VALUES CONFIGURATED FOR STRATEGY - 19x chase, normal values!
v1.07, contact me at ruzli999@gmail.com
SECTOR - 1 - Main settings */
const baseBet = 100 /* Starting Bet, in satoshi. 100 = 1 BITS */
const increaseOnBetWith = 100 /* Also in satoshi to specified on how much add bits (100 satoshi = 1 bits), after reach increaseAfterX iteration. */
const increasePercent = 1.06 /* Increase by multiply bet * increasePercent after reach maximum value specified in percentAfterBet. */
const resetBetAtX = 65000 /* Limit Wager and bet (in BITS), divisions multiplier apply to resetBetAtX too */
@ruzli
ruzli / smartscript_15x.js
Last active April 18, 2019 03:11
Sandbox script - Smartscript 15x [LONG_TERM][2000 bits+]
/* Base SCRIPT! 1.04v */
/* ruzli999@gmail.com - Author of this script */
/* SECTOR - 1 - Starting */
/* Starting - Common */
const baseBet = 100 /* Starting Bet, in satoshi. 100 = 1 BITS, default 200 */
const baseTarget = 15 /* Target multiplier, default 15 */
/* SETTINGS */
@ruzli
ruzli / nyan_catcher.js
Created January 2, 2019 11:50
Nyan catch while waiting and stops before nyan
const baseBet = 2 /* Default: 25, more you set, more you get */
const cycles_for_actual_gameBase = 33 /* Should be: streakToWaitBase + 5(safe), the more you set it, the longer it will play */
const streakToWaitBase = 30 /* Should not touch this */
const divisions = 2 /* 1, 3 */
const toFind = 5 /* Default: 5x 8x */
const multiplierBet = 1.26 /* Default: 1.26, 1.13 edge of profit */
const streakToStartTrack = 8 /* Default 3, 5, 8 */
const actual_game_pause_in_MS = 0 /* Slow down while game begins */
const foundedAdditional = 6
const nyan_stopper = false