Skip to content

Instantly share code, notes, and snippets.

View zundra's full-sized avatar

Zundra Daniel zundra

View GitHub Profile
var config = {
first_wager: {
value: 1000,
type: "balance",
label: "first wager",
},
second_wager: {
value: 5000,
type: "balance",
label: "second wager",
@zundra
zundra / gist:b6dd2b620cbc23803fc744de2ddf0aa5
Created June 30, 2021 18:22
Bust below threshold watch
var config = {
bust_threshold: { value: 2, type: "multiplier", label: "Count busts below this value and bet after <n> busts" },
bust_threshold_limit: { value: 5, type: "multiplier", label: "How many busts to track below threshold before betting" },
};
var stateVars = {
bustCountBelowThreshold: 0
};
log("Script is running..");
var config = {
baseBet: { value: 100, type: "balance", label: "base bet" },
payout: { value: 2, type: "multiplier" },
stop: { value: 1e8, type: "balance", label: "stop if bet >" },
bust_threshold: { value: 2, type: "multiplier", label: "Count busts below this value and bet after <n> busts" },
bust_threshold_limit: { value: 5, type: "multiplier", label: "How many busts to track below threshold before betting" },
loss: {
value: "increase",
type: "radio",
label: "On Loss",
var config = {
payout: {
value: 2.1,
type: "multiplier",
label: "payout",
}
};
var config = {};
var stateVars = {
roundResults: [],
historyLoaded: false,
};
if (engine.gameState === "GAME_STARTING") {
log("starting script...");
require 'openssl'
require 'awesome_print'
class TestRolls
def self.run(server_seed, client_seed, nonce)
rollcount = 0
wlmap = {
wins: {},
losses: {}
#! /bin/bash
# The objective of this script is to install the SQL Server ODBC driver, SQLCMD, and BCP utilities on Ubuntu 14.04
set -x
echo Install C compiler
sudo apt-get install build-essential -y
echo Install make