Sign in to follow this  
Scorcho

SLOWLY BUILD UP YOUR CRYPTO | AUTOPILOT

Recommended Posts

:fiesta: I'll be sharing two different methods for the same site today for you guys, one is a 100% guarantee to slowly build up your money and the other is a free script that builds up your money faster but has a slight risk  :fiesta: 

 

Method 1:

 

[hide]

 

Step 1: Go to this site: https://catchabtc.com/register/scorcho [ref] or www.catchabtc.com [non ref]

 

Step 2: Deposit however much bitcoin you want to invest, I would recommend doing as much as you can for this method because you literally can't lose it

 

Step 3: Go to the settings and then click on Investment

 

Step 4: You can invest your Bitcoin into the site's bankroll, growing your investment by 0.75% every day at ZERO risk.

For example, you invest $100 and every day you will earn $.75 but it will get compounded so you can double your money pretty quickly. Then you can double that money and then double that money, you get the idea.

 

Step 5: After you are satisfied with how much you have earned, you can withdraw from the site. You can withdraw from the bankroll at any time so you don't have to worry about your money getting stuck.

 

[/hide]

 

Method 2:

 

[hide]

 

So this is the script method. The script is designed to be extremely low risk, it is pretty much impossible unless the 0.00001% thing happens but it is still gambling so be careful.

 

Step 1: Go to this site: https://catchabtc.com/register/scorcho [ref] or www.catchabtc.com [non ref]

 

Step 2: Use the script below to slowly build up your money. The script is meant to be very safe, and you can customize what you want your base bet to be and what the maximum bet is. Let's say you are starting out small and you want low risk, keep the base bet at 1 bit. You can then set the maximum bet to be like 1/4 of your total so you never lose all of your money.

 

Step 3: Choose Autobet then click the dropdown menu and press CUSTOM

 

Step 4: Sit back and watch your bitcoin slowly build up.

 

SCRIPT:

 

// Settings

 

var baseBet = 1; // In bits

var baseMultiplier = 2.15; // 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 = 800; // 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'); }

});

 

 

[/hide]

 

Please leave a like if you enjoyed these free methods :hype:

Share this post


Link to post
Share on other sites

liked, checking it out

Edit: Lol this is another thread i read a while ago, you legit just copied his script and added in your refferal  :kek:

Share this post


Link to post
Share on other sites

liked, checking it out

Edit: Lol this is another thread i read a while ago, you legit just copied his script and added in your refferal  :kek:

 

Its a similar script but you will notice many people on the site using the script so it was definitely not originally his. Also, I changed it a bit, his had a maximum bet of 99999 which is extremely stupid and he probably made a bunch of people go bankrupt, I changed mine so you can't lose all your money with a single bet. Also, he had the base bet as 10 which can make you bankrupt faster, mine is a base of 1. He also did not include the investment method which I think is the main method here. Overall I think my post is just better than his even though neither of us made the script. :hype:


Does this work?

 

I'm recording video proof right now, I will add it later on but to answer your question yes it does work and it's a good way to make some money  :ezy:

Share this post


Link to post
Share on other sites

Thank you so much for sharing. I am interested in investing in crypto and would love to listen to your strategies.

Share this post


Link to post
Share on other sites

:fiesta: I'll be sharing two different methods for the same site today for you guys, one is a 100% guarantee to slowly build up your money and the other is a free script that builds up your money faster but has a slight risk  :fiesta: 

 

Method 1:

 

[/color]

 

Please leave a like if you enjoyed these free methods :hype:

 

cool will check it out

Share this post


Link to post
Share on other sites

:fiesta: I'll be sharing two different methods for the same site today for you guys, one is a 100% guarantee to slowly build up your money and the other is a free script that builds up your money faster but has a slight risk  :fiesta: 

 

Method 1:

 

[/color]

 

Please leave a like if you enjoyed these free methods :hype:

 

 

 

 

LET ME.........

 

 

 

SLOWLY.....

 

 

 

 

BUILD MY BTC   :fiesta:

Share this post


Link to post
Share on other sites

:fiesta: I'll be sharing two different methods for the same site today for you guys, one is a 100% guarantee to slowly build up your money and the other is a free script that builds up your money faster but has a slight risk  :fiesta: 

 

Method 1:

 

[/color]

 

Please leave a like if you enjoyed these free methods :hype:

 

thank you :)

Share this post


Link to post
Share on other sites

:fiesta: I'll be sharing two different methods for the same site today for you guys, one is a 100% guarantee to slowly build up your money and the other is a free script that builds up your money faster but has a slight risk  :fiesta: 

 

Method 1:

 

[/color]

 

Please leave a like if you enjoyed these free methods :hype:

lets hope it works

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this