Jump to content

Hashdice Script 2023


Beesh900115

Recommended Posts

Here's the hashdice script that ive been usingsl that i've been rather happy with so far, it uses minim bet amount and make sure to have a decent sized bankrol when you run this script.

 

Goodluck and share some love out of rspllespect.

 

 

var config = {

  scriptTitle: {label: '//////// Script by BeesH-RSA | UID 3198768 - Dont be an ass, share some love!\\\\\\\ ) ', type: 'title'},

  baseBet: {label: 'Starting Bet:', value: 0.000055, type: 'number'},

    baseBet: {

        label: 'Base Bet',

        value: currency.minAmount,

        type: 'number'

    },

    startingChance: {

        label: 'Starting Chance',

        value: 0.01,

        type: 'number'

    },

}

 

var chance = config.startingChance.value;

var currentPayout = ((1/chance)*99);

 

var losecount = 0;

var betcount = 0;

var varix = 1.025;

 

var previousBet = currentBet;

 

var runningbalance = currency.amount;

var originalbalance = currency.amount;

var baseBet = config.baseBet.value;

var currentBet = baseBet;

 

function main () {

    game.onBet = function () {

        game.bet(currentBet, currentPayout).then(function(payout) {

            runningbalance -= currentBet;

            previousBet = currentBet;

            betcount += (1);

           

            if (payout > 1) {

                var netwin = currentBet * currentPayout;

                runningbalance += netwin;

               

                currentBet = baseBet;

                losecount = 0;

                chance = 0.1;

                varix = 1.025;

           

            } else {

               

                if (losecount >= 190) {

                    varix = 1.05;

                }

                if (losecount >= 260) {

                    varix = 1.066;

                }

 

                losecount += (1);

                currentBet = (previousBet * varix);

 

                chance += (0.01);

 

            }

 

            currentPayout = ((1/chance)*99);

 

            if (betcount % 100 == 0) {

                logSummary();

            }

           

            log.info('Betting: ' + currentBet.toFixed(7) + ' ' + ' X ' + ' ' + currentPayout.toFixed(2));

        });

    }

}

 

function logSummary() {

    var netNumber = runningbalance - originalbalance;

    var netPecentage = (netNumber / originalbalance) * 100;

   

    if (originalbalance < runningbalance) {

        log.success('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');

    } else {

        log.error('Total Profit: ' + netNumber.toFixed(7) + '(' + netPecentage.toFixed(2) + '%)');

    }

}

Link to comment
Share on other sites

  • 5 months later...
On 1/25/2024 at 8:16 PM, Sayyed123 said:

Script is if you use for a bit moment with a good base bet 

Screenshot_2023-10-08-07-49-59-960_com.android.chrome.jpg

Is this same script?

Link to comment
Share on other sites

  • 1 month later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...