[BustaBit Script] Nyan Chaser 05-08-2016, 02:41 AM
#1
[BustaBit Script] Nyan Chaser
This script will chase nyan for you, and when it gets nyan it will stop betting. I recommend to use it 2000 games after last nyan.
This script will chase nyan for you, and when it gets nyan it will stop betting. I recommend to use it 2000 games after last nyan.
Quote:// ------------------------------------------------------------------------------------------------------------------------
// Nyan Chaser | Author: phex
//
// This script will bet until it hits the multiplier.
// Whenever it hits the multiplier, it will cash out and stop betting.
//
// I recommend to use it to chase nyan and chase nyan 2000 games after last nyan.
//
// SKYPE: phex.io
// ^ use for support
//
// Good luck earning!
// ------------------------------------------------------------------------------------------------------------------------
PHP Code:
// ------------------------------------------------------------------------------------------------------------------------
var basebits = 1; // How much should it bet each game?
var cashout = 1000; // When should it cash out & stop script?
// ------------------------------------------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------------
// The Code
// ------------------------------------------------------------------------------------------
var basesatoshi = basebits * 100;
var recashout = cashout * 100;
var losses = 0;
var hmtb = basesatoshi;
engine.on('game_starting', function(data) {
if (engine.lastGamePlay() == 'WON') {
engine.stop();
} else {
engine.placeBet(hmtb, recashout);
}
});
![[Image: vmqBSIW.png]](http://i.imgur.com/vmqBSIW.png)