Earn with php Script Bitcoin - crapi - 03-26-2023
Since my previous post has reached over 10k viewership i wanted to share my method part 2
[Coinscrash Script] Coinscrash
![[Image: s61QN2L.png]](https://i.imgur.com/s61QN2L.png)
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.
This script is designed the best way to recover, and still gain.
I am personally earning $16 daily from this script, it's running on my computer 24/7.
If your balance is ~100k bits, I recommend to set baseBet to 50.
Good luck earning! Smile
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: Coinscrash Script - Avendator - 03-26-2023
thank you sir for this script , i will try it right now
I just register ,and got some Free bitcoin form the faucet but seems its not enough to run this script
so ill make a depo and try it for sure
RE: Coinscrash Script - lakiluk - 03-26-2023
Thank you so much for your coinscrash scripts. I need this
where to put this ? can you explain more ?
RE: Coinscrash Script - crapi - 03-26-2023
(03-26-2023, 11:05 PM)lakiluk Wrote: Thank you so much for your coinscrash scripts. I need this
where to put this ? can you explain more ?
YES you after login go to auto
— — — — — — — –
Put This code Here Like This
— — — — — — — –
![[Image: gKLGJnR.png]](https://i.imgur.com/gKLGJnR.png)
Now the Click the Magic Button ” RUN “
RE: Coinscrash Script - JockerFace - 03-26-2023
(03-26-2023, 10:56 PM)crapi Wrote: Since my previous post has reached over 10k viewership i wanted to share my method part 2
[Coinscrash Script] Coinscrash
![[Image: s61QN2L.png]](https://i.imgur.com/s61QN2L.png)
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.
This script is designed the best way to recover, and still gain.
I am personally earning $16 daily from this script, it's running on my computer 24/7.
If your balance is ~100k bits, I recommend to set baseBet to 50.
Good luck earning! Smile
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++; } });
thank you for reminding me this site checked out my old coinscrash account and found $30 worth in it
gambled up to almost 500$ in 1 hour then i withdraw 400$ and lost the other 100 $ left
RE: Coinscrash Script - crapi - 03-26-2023
(03-26-2023, 11:00 PM)Avendator Wrote: thank you sir for this script , i will try it right now
I just register ,and got some Free bitcoin form the faucet but seems its not enough to run this script
so ill make a depo and try it for sure make sure you have use my referral link .
RE: Coinscrash Script - sensitive - 03-26-2023
great work on your tutorial. will give it a shot.
RE: Coinscrash Script - Avendator - 03-26-2023
the script is going well till now , wanted to ask can i run it 24/7
and also can i use a RDP to run it ?
RE: Coinscrash Script - crapi - 03-26-2023
(03-26-2023, 11:40 PM)Avendator Wrote: the script is going well till now , wanted to ask can i run it 24/7
and also can i use a RDP to run it ? Yes you can
also i run it on rdp
RE: Coinscrash Script - elfcris - 03-27-2023
Interesting read, never expected someone to use a script to make profit like that
you are crazy nice method
|