$5ක් වටින BustaBit Script ෆෝ FREE

TharushiKU

Member
Dec 2, 2016
1,560
106
0
Don'tCareWhatYouThink
BustaBit කරන අයට ලොස්ට් වෙන එක අඩු වෙන්න මෙන්න මේ ස්ක්‍රිප්ට් එක දා ගන්න තියෙන්නෙ. මේක කට්ටිය විකුණන්නෙ $5ට...
සල්ලි ලැබුන වෙලාවක ඕක ලියපු කෙනාට $1ක් $2ක් ඩොනේට් කරන්න එහෙම නම්

https://www.bustabit.com/play ලින්ක් එකට ගිහින් ඔටෝ කියන එක ක්ලික් කරන්න,
ඊට පස්සෙ කස්ටම් කියන එක ක්ලික් කරලා ඒකේ තියෙන බහුබූත ටික මකන්න. ඊළඟට මේක එතනට පේස්ට් කරන්න

PHP:
var baseBet = 10; // In bits
var baseMultiplier = 1.33; // Target multiplier: 1.33 recommended
var variableBase = false; // Enable variable mode (very experimental), read streakSecurity.
var streakSecurity = 3; // Number of loss-streak you wanna be safe for. Increasing this massively reduces the variableBase calculated. (1-loss = 30%, 3-loss = 5%, 3-loss = 1.35% of your maximum balance). Recommended: 3+
var maximumBet = 999999999; // Maximum bet the bot will do (in bits).

// Pause settings
var pauseThreshold = 20;    // when game crashes above this, betting pauses
var continueThreshold = 2; // when paused and the game crashes above this, betting resumes

var pauseAfterNLosses = 3;   
var pauseForMGames = 7;

/******************/

pauseThreshold = Math.round(pauseThreshold * 100);
continueThreshold = Math.round(continueThreshold * 100);

// 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;

var lostLast = false;

// Pause Variables
var currentGameData;
var lastCrash = (continueThreshold + pauseThreshold)/3;
var paused = false;
var pauseLossStreak = 0;
var pausedFor = 0;


// Initialization
console.log('====== BustaBit Bot ======');
console.log('My username is: ' + engine.getUsername());
console.log('Starting balance: ' + (engine.getBalance() / 100).toFixed(3) + ' 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 ======');

          /********************/
      
        if(lastCrash >= pauseThreshold) {
            paused = true;
            console.log("Pausing Betting");
            return;
        }
        
        if(paused) {
            if(lastCrash >= continueThreshold) {
                console.log("Continuing Betting");
                lastCrash = (continueThreshold + pauseThreshold)/3;
                paused = false;
            } else {
                console.log("Betting Is Paused");
                return;
            }
        }
    
        /********************/
      
        if(pausedFor > 0) {1
           pausedFor++;
           if(pausedFor <= pauseForMGames) {
               console.log("Paused " + pausedFor + " of " + pauseForMGames + " games");
               return;
           } else {
               console.log("Resuming");
               pausedFor = 0;
               pauseLossStreak = 0;
           }
        } 
        
        if(pauseLossStreak >= pauseAfterNLosses) {
            console.log("Pausing for 1 of " + pauseForMGames + " games");
            pausedFor = 1;
            return;
        }
    
        /********************/
    
      
      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(3) + ' bits');
      console.log('[Stats] Profit percentage: ' + (((engine.getBalance() / startingBalance) - 1) * 100).toFixed(3) + '%');
      }

      if (lostLast && !firstGame) {//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 /= 3;
      }

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

      currentBet *= 3; // Then multiply base bet by 3!
      currentMultiplier = 1 + (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 3x base bet.
      var divider = 100;
      for (i = 0; i < streakSecurity; i++) {
      divider += (100 * Math.pow(3, (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!'); }
    currentGameData = data;
});

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'); }
    
    /********************/
    
    lastCrash = data.game_crash;
        
    if (!currentGameData || !currentGameData.hasOwnProperty(engine.getUsername())) {
        return;
    };
    
    lostLast = engine.lastGamePlay() == 'LOST';
    
    console.log((lostLast ? "Lost" : "Won") + " this game.");
    
    
    /********************/
    
    if(!lostLast) {
        pauseLossStreak = 0;
    } else {
        pauseLossStreak++;
    }
    
    /********************/
});
දැන් ඉතින් රන් වෙන්න දාලා බලන් ඉන්න තියෙන්නෙ.
මේක දැම්මා කියලා පැරදෙන්නෙ නැතුවම යන්නේ නැහැ.
ඒත් පැරදෙන එක අඩු වෙනවා... පැරදෙන ඒවා කවර් වෙනවා :love:
 

TharushiKU

Member
Dec 2, 2016
1,560
106
0
Don'tCareWhatYouThink
මේක ෆොරෙක්ස් වගේ එකක් ද ?
නැහැ, බිට්කොයින් වලින් සල්ලි ඔට්ටු දාලා බලන් ඉන්න තියෙන්නෙ
සයිට් එකෙන් 1.01 ---- 1.02 වගේ යනවා... ඒක හිටපු ගමන් නතර වෙන්න කලින් අපි නතර වෙලා හිටියොත් අපි දිනුම්
අපි පෙරේත කමේ ඉඳලා සයිට් එක නතර උනොත් අපි පැරදෙනවා

සයිට් එකට ගිහින් බලන්න පට ගාලා තේරෙනවා ;)
 

Uaremylove

Banned
Feb 20, 2017
65
21
0
BustaBit කරන අයට ලොස්ට් වෙන එක අඩු වෙන්න මෙන්න මේ ස්ක්‍රිප්ට් එක දා ගන්න තියෙන්නෙ. මේක කට්ටිය විකුණන්නෙ $5ට...
සල්ලි ලැබුන වෙලාවක ඕක ලියපු කෙනාට $1ක් $2ක් ඩොනේට් කරන්න එහෙම නම්

https://www.bustabit.com/play ලින්ක් එකට ගිහින් ඔටෝ කියන එක ක්ලික් කරන්න,
ඊට පස්සෙ කස්ටම් කියන එක ක්ලික් කරලා ඒකේ තියෙන බහුබූත ටික මකන්න. ඊළඟට මේක එතනට පේස්ට් කරන්න

PHP:
var baseBet = 10; // In bits
var baseMultiplier = 1.33; // Target multiplier: 1.33 recommended
var variableBase = false; // Enable variable mode (very experimental), read streakSecurity.
var streakSecurity = 3; // Number of loss-streak you wanna be safe for. Increasing this massively reduces the variableBase calculated. (1-loss = 30%, 3-loss = 5%, 3-loss = 1.35% of your maximum balance). Recommended: 3+
var maximumBet = 999999999; // Maximum bet the bot will do (in bits).

// Pause settings
var pauseThreshold = 20;    // when game crashes above this, betting pauses
var continueThreshold = 2; // when paused and the game crashes above this, betting resumes

var pauseAfterNLosses = 3;   
var pauseForMGames = 7;

/******************/

pauseThreshold = Math.round(pauseThreshold * 100);
continueThreshold = Math.round(continueThreshold * 100);

// 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;

var lostLast = false;

// Pause Variables
var currentGameData;
var lastCrash = (continueThreshold + pauseThreshold)/3;
var paused = false;
var pauseLossStreak = 0;
var pausedFor = 0;


// Initialization
console.log('====== BustaBit Bot ======');
console.log('My username is: ' + engine.getUsername());
console.log('Starting balance: ' + (engine.getBalance() / 100).toFixed(3) + ' 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 ======');

          /********************/
      
        if(lastCrash >= pauseThreshold) {
            paused = true;
            console.log("Pausing Betting");
            return;
        }
        
        if(paused) {
            if(lastCrash >= continueThreshold) {
                console.log("Continuing Betting");
                lastCrash = (continueThreshold + pauseThreshold)/3;
                paused = false;
            } else {
                console.log("Betting Is Paused");
                return;
            }
        }
    
        /********************/
      
        if(pausedFor > 0) {1
           pausedFor++;
           if(pausedFor <= pauseForMGames) {
               console.log("Paused " + pausedFor + " of " + pauseForMGames + " games");
               return;
           } else {
               console.log("Resuming");
               pausedFor = 0;
               pauseLossStreak = 0;
           }
        } 
        
        if(pauseLossStreak >= pauseAfterNLosses) {
            console.log("Pausing for 1 of " + pauseForMGames + " games");
            pausedFor = 1;
            return;
        }
    
        /********************/
    
      
      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(3) + ' bits');
      console.log('[Stats] Profit percentage: ' + (((engine.getBalance() / startingBalance) - 1) * 100).toFixed(3) + '%');
      }

      if (lostLast && !firstGame) {//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 /= 3;
      }

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

      currentBet *= 3; // Then multiply base bet by 3!
      currentMultiplier = 1 + (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 3x base bet.
      var divider = 100;
      for (i = 0; i < streakSecurity; i++) {
      divider += (100 * Math.pow(3, (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!'); }
    currentGameData = data;
});

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'); }
    
    /********************/
    
    lastCrash = data.game_crash;
        
    if (!currentGameData || !currentGameData.hasOwnProperty(engine.getUsername())) {
        return;
    };
    
    lostLast = engine.lastGamePlay() == 'LOST';
    
    console.log((lostLast ? "Lost" : "Won") + " this game.");
    
    
    /********************/
    
    if(!lostLast) {
        pauseLossStreak = 0;
    } else {
        pauseLossStreak++;
    }
    
    /********************/
});
දැන් ඉතින් රන් වෙන්න දාලා බලන් ඉන්න තියෙන්නෙ.
මේක දැම්මා කියලා පැරදෙන්නෙ නැතුවම යන්නේ නැහැ.
ඒත් පැරදෙන එක අඩු වෙනවා... පැරදෙන ඒවා කවර් වෙනවා :love:

දෙයක් දානකොට ගත්තු තැන දාන්න පුරුදු වෙයන් පට්ට වේziiiii :angry:
එතකොටයි මේ Script පාවිච්චි කරන එකේ බරපතල කම තේරෙන්නේ මේක Try කරන්න යන එවුන්ට.:angry: :angry:

Link = https://www.nulled.to/topic/185628-a-few-bustabit-scripts-good-ones/

ඕක දාපු එක ඒ එක අගට මෙහෙමත් කියලා තියනවා කියන එක උබ මෙත දාලා නෑනේ. එකයි මල පැන්නේ මට වුනත්.

Like I said, they work great, but I would recommend 300k bits or more to use it, for recovery :rolleyes:

අන්න ඒ නිසයි ගත්තු තැන දාන්න පුරුද්දක් ඇති කරගනින් කියන්නේ අපේ Account වලට මොනවාහරි වුනොත් උබට ගැලවීමක් හරි තියෙන්නේ එතකොට.​
 
Last edited:

TharushiKU

Member
Dec 2, 2016
1,560
106
0
Don'tCareWhatYouThink
දෙයක් දානකොට ගත්තු තැන දාන්න පුරුදු වෙයන් පට්ට වේziiiii :angry:
එතකොටයි මේ Script පාවිච්චි කරන එකේ බරපතල කම තේරෙන්නේ මේක Try කරන්න යන එවුන්ට.:angry: :angry:

Link = https://www.nulled.to/topic/185628-a-few-bustabit-scripts-good-ones/

ඕක දාපු එක ඒ එක අගට මෙහෙමත් කියලා තියනවා කියන එක උබ මෙත දාලා නෑනේ. එකයි මල පැන්නේ මට වුනත්.

Like I said, they work great, but I would recommend 300k bits or more to use it, for recovery :rolleyes:

අන්න ඒ නිසයි ගත්තු තැන දාන්න පුරුද්දක් ඇති කරගනින් කියන්නේ අපේ Account වලට මොනවාහරි වුනොත් උබට ගැලවීමක් හරි තියෙන්නේ එතකොට.​

පොට්ට බැල්ලිගේ පුතෝ
උඹ දාලා තියෙන අට මගලේ තියෙන්නෙ මම දාපු එකට වඩා වෙනස් ඩේටා නෙ

උබ බලලා නෙමේද මෙතන රැඟුවේ?
:lol::lol::lol:

bd18189b1e064c0588c453895a313cc7.png

කොහොමත් මේක $2ට $3ට විකුණනවා කියලා ත්‍රේඩ් දාපු උන්ට මේක දුන්නාම රිදෙනවා කියලා මම දන්නවා
උඹ මේක කලින් දැන ගෙන කිව්වෙ නැහැ, මම කිව්ව ගමන් බොරුවට දුකට අඬනවා
:lol::lol:
 
Last edited:

PUKARIS

Active member
  • Dec 12, 2016
    723
    78
    28
    දෙයක් දානකොට ගත්තු තැන දාන්න පුරුදු වෙයන් පට්ට වේziiiii :angry:
    එතකොටයි මේ Script පාවිච්චි කරන එකේ බරපතල කම තේරෙන්නේ මේක Try කරන්න යන එවුන්ට.:angry: :angry:



    ඕක දාපු එක ඒ එක අගට මෙහෙමත් කියලා තියනවා කියන එක උබ මෙත දාලා නෑනේ. එකයි මල පැන්නේ මට වුනත්.

    Like I said, they work great, but I would recommend 300k bits or more to use it, for recovery :rolleyes:

    අන්න ඒ නිසයි ගත්තු තැන දාන්න පුරුද්දක් ඇති කරගනින් කියන්නේ අපේ Account වලට මොනවාහරි වුනොත් උබට ගැලවීමක් හරි තියෙන්නේ එතකොට.[/CENTER]

    ඉතින් මී හරකො, ඌ එහෙම හරි අපිව දැනුවත් කරා.. තෝ මොකද්ද කරල තියෙන්නෙ..?:angry::angry::lol:
     

    TharushiKU

    Member
    Dec 2, 2016
    1,560
    106
    0
    Don'tCareWhatYouThink
    ඉතින් මී හරකො, ඌ එහෙම හරි අපිව දැනුවත් කරා.. තෝ මොකද්ද කරල තියෙන්නෙ..?:angry::angry::lol:
    අනිත් එක ඌ දාලා තියෙන ලින්ක් එකේ තියෙන්නෙ සම්පූර්ණයෙන්ම වෙනස් ස්ක්‍රිප්ට් එකක්
    ඌ අංක කියෝලා නැහැ, අකුරු හරි නිසා මෙතන දාලා :lol::lol:
     
    • Like
    Reactions: Tharuroxforjustice

    Tharuroxforjustice

    Well-known member
  • Dec 23, 2016
    627
    529
    93
    වැදගත් දෙයක් EK එකේ බෙදා දුන්න එක වටිනවා මේ දේ දැනට කරන අයට.
    Good post!++
     

    Roamstar

    Well-known member
  • Aug 8, 2012
    1,916
    405
    83
    Colombo, Sri Lanka
    දැන් මටත් මේක කරන්න ආසාවක් ඇවිල්ල තියෙන්නේ. බලාගෙන හිටිය කරන විදිය. දැන් මොකෙක් හරි මට bitcoin ටිකක් දියන් 12$ වගේ. 14$ක් දෙන්නම් Skrill. TharushiKU උඹ ගාව තියෙනවා නම් දීපන් බන්. ලොකු ගණන් දාන්න කලින් නිකන් කරලා බලන්න එපයි.
     

    Edition

    Well-known member
  • Jul 5, 2012
    3,915
    492
    83
    searching
    පොට්ට බැල්ලිගේ පුතෝ
    උඹ දාලා තියෙන අට මගලේ තියෙන්නෙ මම දාපු එකට වඩා වෙනස් ඩේටා නෙ

    උබ බලලා නෙමේද මෙතන රැඟුවේ?
    :lol::lol::lol:


    කොහොමත් මේක $2ට $3ට විකුණනවා කියලා ත්‍රේඩ් දාපු උන්ට මේක දුන්නාම රිදෙනවා කියලා මම දන්නවා
    උඹ මේක කලින් දැන ගෙන කිව්වෙ නැහැ, මම කිව්ව ගමන් බොරුවට දුකට අඬනවා
    :lol::lol:
    :lol::lol: