![]() |
|
[BustaBit Script] BustaPhex - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: PHP (https://sinister.ly/Forum-PHP) +--- Thread: [BustaBit Script] BustaPhex (/Thread-BustaBit-Script-BustaPhex) |
[BustaBit Script] BustaPhex - Quarantine - 05-08-2016 [BustaBit Script] BustaPhex This script is a script that you can use to gain. Whenever it loses, it will recover the safest way. One of the best scripts out there, for free! NOTE: I highly recommend having at least 100k bits as balance because, under extreme circumstances, the script can fail if you don't have enough bits. No script can win 100.00% of times. Quote:// ------------------------------------------------------------------------------------------------------------------------ PHP Code: // ------------------------------------------------------------------------------------------------------------------------
var baseBet = 200; // Set the base bet here. I recommend to set it to ~200 if you have 100k bits as start balance.
// ------------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------
// I recommend not to edit the settings below. They were calculated to be the best options possible.
// --------------------------------------------------------------------------------------------------
var skip1 = 6; // skip X games after second lost game.
var skip2 = 0; // skip X games after third lost game.
var skip3 = 6; // skip X games after fourth lost game.
var skip4 = 0; // skip X games after fifth lost game.
var skip5 = 6; // skip X games after sixth lost game.
var skip6 = 2; // skip X games afterwards. This means the script will bet once and then skip X games.
// This would continue to happen until a game is won or you bust.
// ------------------------------------------------------------------------------------------
// The Code
// ------------------------------------------------------------------------------------------
var bet = baseBet * 100;
var currentBet = bet;
var cashOut = 1.05;
var startBalance = engine.getBalance();
var currentBalance = startBalance;
var losses = 0;
var skip = 0;
var lostGames = 0;
var waitXgames = 0;
var CO = 0;
engine.on('game_starting', function(info) {
if (currentBet && engine.lastGamePlay() == 'LOST') {
lostGames++;
currentBalance = engine.getBalance();
losses = startBalance - currentBalance;
currentBet *= 2;
cashOut = (losses / currentBet) + 1.01;
if (lostGames >= 3) {
waitXgames = 0;
if (lostGames == 3) {
skip = skip1;
}
if (lostGames == 4) {
skip = skip2;
}
if (lostGames == 5) {
skip = skip3;
}
if (lostGames == 6) {
skip = skip4;
}
if (lostGames == 7) {
skip = skip5;
}
if (lostGames >= 8) {
skip = skip6;
}
}
} else {
currentBalance = engine.getBalance();
if (currentBalance > startBalance) {
currentBet = bet;
cashOut = 1.05;
startBalance = engine.getBalance();
lostGames = 0;
skip = 0;
}
}
if (waitXgames >= skip) {
console.log('Placing bet of', Math.floor(currentBet / 100), 'at', Math.round(cashOut * 100) / 100, 'Cash out.');
engine.placeBet(Math.floor(currentBet / 100) * 100, Math.floor(cashOut * 100), false);
}
});
engine.on('game_crash', function(data) {
if (data.game_crash / 100 >= CO) {
waitXgames++;
} else {
waitXgames++;
}
});
RE: [BustaBit Script] BustaPhex - Pirate - 05-08-2016 Thank you for this script. Saved too collection along with the otther one I found useful. RE: [BustaBit Script] BustaPhex - Wildfire - 05-08-2016 Erm, this is JavaScript. Not PHP. RE: [BustaBit Script] BustaPhex - Adorapuff - 05-08-2016 Has anyone tested this script and profited, also what's the likelihood of getting banned using it? EDIT: Is 100k bits about $50? RE: [BustaBit Script] BustaPhex - Dean Winchester - 11-01-2016 Sorry don't mean to bump this, but this really sparked my curiosity. 1. Does this work? Has anyone profited from it? 2. How do I run this in my browser? Tampermonkey? RE: [BustaBit Script] BustaPhex - ramification - 04-18-2017 in betting house always wins. but that doesn't mean we can't win. what we do is being more greedy and loss everything. who knows how to handle this can get some $$ without a problem. I used bustabit too. but with a bustabit script i got from www.bustabitbuster.com which was good because i didnt want to stare at my pc whole day. RE: [BustaBit Script] BustaPhex - vishal - 03-12-2018 how this scripts i can run let me know if you know how to run this script let me know i am ready to pay any one 15 usd you can connect me through skype rickyahuja1990 please help me guys to run this script on bustabt.com . HELP ME GUYS TO RUN THIS SCRIPT SUCCESFULLY I WILL PAY YOU 15 USD FOR THIS. THANKS
|