Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 713 Vote(s) - 3.46 Average
  • 1
  • 2
  • 3
  • 4
  • 5
CoinsCrash Earn 50 $ Daily on AutoPilot [Epic Smart ]

#21
Quote:(10-18-2019, 03:17 PM)YoBigTime Wrote:

[To see links please register here]

Quote: (10-17-2019, 10:20 AM)ExtraIQ Wrote:

[To see links please register here]

Quote: (10-14-2019, 04:36 PM)jiskow Wrote:

[To see links please register here]

what is the minimum investment for start?

you need to have 30.000 bits to use basebet 10

Is that $2,300, lol ?
no mate is around 230$
Reply

#22
Quote:(10-19-2019, 02:11 PM)ExtraIQ Wrote:

[To see links please register here]

Quote: (10-18-2019, 03:17 PM)YoBigTime Wrote:

[To see links please register here]

Quote: (10-17-2019, 10:20 AM)ExtraIQ Wrote:

[To see links please register here]

you need to have 30.000 bits to use basebet 10

Is that $2,300, lol ?
no mate is around 230$

30k bits is $230 only ? How is that possible ?

+1: this is the minimum required investment to make ur code work ? ( there is a chance u loose all ur money , it’s based on the martingale system)
Reply

#23
it dont work like htat hte script is smart and will know when to bet and profit you can also see my own graph there
Reply

#24
Is this script using martingale strategy with microbets?
Reply

#25
i didnt know that you can use script there thank you
Reply

#26
still works its amazing thanks
Reply

#27
Quote:(09-22-2019, 04:50 PM)TheKingler Wrote:

[To see links please register here]

Quote: (09-22-2019, 04:32 PM)ExtraIQ Wrote:

[To see links please register here]

Hi i want to share with sinister guys my own way of earning Bitcoin

You need to have a Bitcoin wallet
And Register an account at here
Copy the Code an paste it at AutoBet -- Custom
Press Run



// Settings
var baseBet = 10; // In bits
var baseMultiplier = 1.10; // 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'); }
});




If you have any question feel free to ask !
Leave a comment if you like my work !
All the best Peace :cool:

Hey could u show some proof of this working? And what exactly is autobet?
this is a scam i lost all my money
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through