ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content



Photo

Passive Bitcoin with ZERO effort Expandable


  • Please log in to reply
Passive Bitcoin with ZERO effort Expandable

#31

fern5
fern5
    Offline
    0
    Rep
    0
    Likes

    New Member

Posts: 20
Threads: 0
Joined: Aug 04, 2019
Credits: 0
Four years registered
#31

Gotta take a quick look to see if this works. Thanks for the effort, OP.


  • 0

#32

cekiwam
cekiwam
    Offline
    0
    Rep
    2
    Likes

    Member

  • PipPipPip
Posts: 48
Threads: 1
Joined: Aug 12, 2019
Credits: 0
Four years registered
#32

Hey if your reading this your in luck i will show you how to get passive Bitcoin with very little start up time. Now i bet your thinking but Seth this is way to good to be true but i can show you its not ill show you how you can expand this and turn it massive

 

LECHERS WILL BE REPORTED NO TY AND CHEERS

// Settings
var baseBet = 8; // In bits
var baseMultiplier = 1.11; // Target multiplier: 1.10 recommended
var variableBase = false; // Enable variable mode (very experimental), read streakSecurity.
var streakSecurity = 15; // Number of loss-streak you wanna be safe for. Increasing this massively reduces the variableBase calculated. (1-loss = 20%, 2-loss = 5%, 3-loss = 1.25% of your maximum balance). Recommended: 2+
var maximumBet = 999999; // Maximum bet the bot will do (in bits).

// Variables - Do not touch!
var baseSatoshi = baseBet * 100; // Calculated
var currentBet = baseSatoshi;
var currentMultiplier = baseMultiplier;
var currentGameID = -1;
var firstGame = true;
var lossStreak = 0;
var coolingDown = false;

// Initialization
console.log('====== Procon\'s BustaBit Bot ======');
console.log('My username is: ' + engine.getUsername());
console.log('Starting balance: ' + (engine.getBalance() / 100).toFixed(2) + ' bits');
var startingBalance = engine.getBalance();

if (variableBase) {
console.warn('[WARN] Variable mode is enabled and not fully tested. Bot is resillient to ' + streakSecurity + '-loss streaks.');
}

// On a game starting, place the bet.
engine.on('game_starting', function(info) {
console.log('====== New Game ======');
console.log('[Bot] Game #' + info.game_id);
currentGameID = info.game_id;

if (coolingDown) {
if (lossStreak == 0) {
coolingDown = false;
}
else {
lossStreak--;
console.log('[Bot] Cooling down! Games remaining: ' + lossStreak);
return;
}
}

if (!firstGame) { // Display data only after first game played.
console.log('[Stats] Session profit: ' + ((engine.getBalance() - startingBalance) / 100).toFixed(2) + ' bits');
console.log('[Stats] Profit percentage: ' + (((engine.getBalance() / startingBalance) - 1) * 100).toFixed(2) + '%');
}

if (engine.lastGamePlay() == 'LOST' && !firstGame) { // If last game loss:
lossStreak++;
var totalLosses = 0; // Total satoshi lost.
var lastLoss = currentBet; // Store our last bet.
while (lastLoss >= baseSatoshi) { // Until we get down to base bet, add the previous losses.
totalLosses += lastLoss;
lastLoss /= 4;
}

if (lossStreak > streakSecurity) { // If we're on a loss streak, wait a few games!
coolingDown = true;
return;
}

currentBet *= 7; // Then multiply base bet by 4!
currentMultiplier = 1.00 + (totalLosses / currentBet);
}
else { // Otherwise if win or first game:
lossStreak = 0; // If it was a win, we reset the lossStreak.
if (variableBase) { // If variable bet enabled.
// Variable mode resists (currently) 1 loss, by making sure you have enough to cover the base and the 4x base bet.
var divider = 100;
for (i = 0; i < streakSecurity; i++) {
divider += (100 * Math.pow(4, (i + 1)));
}

newBaseBet = Math.min(Math.max(1, Math.floor(engine.getBalance() / divider)), maximumBet * 100); // In bits
newBaseSatoshi = newBaseBet * 100;

if ((newBaseBet != baseBet) || (newBaseBet == 1)) {
console.log('[Bot] Variable mode has changed base bet to: ' + newBaseBet + ' bits');
baseBet = newBaseBet;
baseSatoshi = newBaseSatoshi;
}
}
// Update bet.
currentBet = baseSatoshi; // in Satoshi
currentMultiplier = baseMultiplier;
}

// Message and set first game to false to be sure.
console.log('[Bot] Betting ' + (currentBet / 100) + ' bits, cashing out at ' + currentMultiplier + 'x');
firstGame = false;

if (currentBet <= engine.getBalance()) { // Ensure we have enough to bet
if (currentBet > (maximumBet * 100)) { // Ensure you only bet the maximum.
console.warn('[Warn] Bet size exceeds maximum bet, lowering bet to ' + (maximumBet * 100) + ' bits');
currentBet = maximumBet;
}
engine.placeBet(currentBet, Math.round(currentMultiplier * 100), false);
}
else { // Otherwise insufficent funds...
if (engine.getBalance() < 100) {
console.error('[Bot] Insufficent funds to do anything... stopping');
engine.stop();
}
else {
console.warn('[Bot] Insufficent funds to bet ' + (currentBet / 100) + ' bits.');
console.warn('[Bot] Resetting to 1 bit basebet');
baseBet = 1;
baseSatoshi = 100;
}
}
});

engine.on('game_started', function(data) {
if (!firstGame) { console.log('[Bot] Game #' + currentGameID + ' has started!'); }
});

engine.on('cashed_out', function(data) {
if (data.username == engine.getUsername()) {
console.log('[Bot] Successfully cashed out at ' + (data.stopped_at / 100) + 'x');
}
});

engine.on('game_crash', function(data) {
if (!firstGame) { console.log('[Bot] Game crashed at ' + (data.game_crash / 100) + 'x'); }
});

Leave a like if this helped you


  • 0

#33

sony009
sony009
    Offline
    0
    Rep
    0
    Likes

    New Member

  • PipPip
Posts: 11
Threads: 0
Joined: Aug 15, 2019
Credits: 0
Four years registered
#33

i will check this out and see if it works


  • 0

#34

PatrickBang
PatrickBang
    Offline
    142
    Rep
    276
    Likes

    Veteran

Posts: 973
Threads: 66
Joined: Jan 02, 2019
Credits: 0

Five years registered
#34
Wanna see it. Will post review after tested

  • 0

SfLbmR8.gif

FSbPUPU.gif

7Gu3pib.gif


#35

kilu100
kilu100
    Offline
    0
    Rep
    0
    Likes

    Member

  • PipPipPip
Posts: 56
Threads: 0
Joined: Sep 13, 2019
Credits: 0
Four years registered
#35

bro they just collect your data + it damages your computer 


  • 0

#36

XVNiNG
XVNiNG
    Offline
    0
    Rep
    0
    Likes

    Advanced Member

  • PipPipPipPip
Posts: 129
Threads: 1
Joined: Mar 27, 2018
Credits: 0

Six years registered
#36

worked


  • 0

#37

guugly
guugly
    Offline
    0
    Rep
    59
    Likes

    Advanced Member

Posts: 76
Threads: 5
Joined: Aug 23, 2019
Credits: 0
Four years registered
#37
This method seems pretty cool right now.

  • 0

#38

navi13
navi13
    Offline
    0
    Rep
    11
    Likes

    Addicted

  • PipPipPipPipPip
Posts: 216
Threads: 3
Joined: May 03, 2018
Credits: 0
Five years registered
#38

let's try


  • 0

#39

alsambidala
alsambidala
    Offline
    0
    Rep
    0
    Likes

    New Member

  • PipPip
Posts: 23
Threads: 0
Joined: Sep 21, 2019
Credits: 0
Four years registered
#39

sasaddsadsasda


  • 0


 Users browsing this thread: