Bitcoin Forum
June 17, 2024, 04:12:07 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Bustabit Script | 90X Chaser  (Read 282 times)
9900K (OP)
Jr. Member
*
Offline Offline

Activity: 109
Merit: 1


View Profile WWW
October 07, 2019, 12:00:13 AM
Last edit: June 15, 2020, 11:47:33 AM by 9900K
 #1

Today I've decided to put the "infamous" bustabit 90x chasing script up for sale since no one else seems to sell it here.
It's a basic script, it waits for a specified number of games without a 90x before it begins chasing 90x and multiplying the bet by an undisclosed amount each time.

It's fairly well known and largely used. A few months ago as many as 35 people used it at the same time, all making good profit!

Obviously with this script as much as any other script, you can make more with a higher bankroll. But the minimum required bankroll I would say is quite low and affordable.

Script Price: 0.003 BTC
Suggested Bankroll: 0.004 BTC
Daily Profit: 0.002-0.3 BTC per day depending on bankroll


Example of a high bankroll account that uses it:
https://www.bustabit.com/user/blockman101


For inquiries you may contact me on Telegram: @Enzo187

If you have no questions, you may purchase the script directly from here: https://rocketr.net/buy/0fdd590b79b1

Do not contact me trying to negotiate me down to a lower price.
I will be willing to show a small portion of the code to interested buyers to prove the script is legitimate
LucasPeb
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
October 07, 2019, 03:41:56 AM
 #2

You are selling something that is given free in pastebit.com Cheesy
Plus it's not safe at all: http://prntscr.com/pfrset after many games you are betting 40$ each round and trying to hunt a 90x.


var config = {};
 
var base_amount = 12;
var restart_after_win = true;
var start_after_no90 = 100;
 
/* DO NOT EDIT AFTER THIS */
 
var amount = base_amount;
var losses = 0, vlosses = 0, no90 = 0;
var playing = false, active = true;
 
engine.on('GAME_STARTING', function () {
    if(playing) {
        log(losses + ' losses, betting with ' + amount);
        engine.bet(parseInt(amount) * 100, 90);
    }
});
 
engine.on('GAME_ENDED', function (game) {
    var below_90 = parseInt(game.bust) < 90;
    if(playing) {
        if (below_90) {
            losses++;
            if (losses < 125) {
                if (losses >= 80) amount = base_amount * 2;
            } else if (losses == 125) {
                amount = base_amount * 2.5;
            } else if (losses > 125) {
                vlosses++;
                if (vlosses == 22) {
                    vlosses = 0;
                    amount = amount + amount / 4;
                }
            }
        } else {
            if (restart_after_win) {
                log('won ' + (parseInt(amount) * 90) + ' bits, restarting');
                amount = base_amount;
                losses = vlosses = no90 = 0;
                playing = false;
            }
            else {
                playing = active = false;
                stop('won ' + (parseInt(amount) * 90) + ' bits, stopping');
            }
        }
    }else if(active) {
        if (below_90) {
            no90++;
        } else {
            no90 = 0;
            log('x90 event, counter reset');
        }
        if (no90 >= start_after_no90) playing = true;
        log('no x90 counter: ' + no90);
    }
});
9900K (OP)
Jr. Member
*
Offline Offline

Activity: 109
Merit: 1


View Profile WWW
October 07, 2019, 06:41:45 AM
 #3

You are selling something that is given free in pastebit.com Cheesy
Plus it's not safe at all: http://prntscr.com/pfrset after many games you are betting 40$ each round and trying to hunt a 90x.

First of all, this is not even close to the same one. That one is outdated and is no longer used. Hasn't been for months.
Second of all, that there is an example of someone using a high bankroll. Me and you have different definitions of safe then the person you've referenced, obviously.
Third and finally, do not come to my thread trying to talk trash about something you know nothing about.
9900K (OP)
Jr. Member
*
Offline Offline

Activity: 109
Merit: 1


View Profile WWW
November 12, 2019, 08:02:16 AM
 #4

Bummmping this!
Jasperoo
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
December 23, 2020, 05:32:05 PM
 #5

Good results with this one https://github.com/BustaBitBotScript/Bustabit
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!