Sinisterly
[BustaBit Script] Nyan Chaser - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: PHP (https://sinister.ly/Forum-PHP)
+--- Thread: [BustaBit Script] Nyan Chaser (/Thread-BustaBit-Script-%C2%A0Nyan-Chaser)



[BustaBit Script] Nyan Chaser - Quarantine - 05-08-2016

[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.
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! Smile
// ------------------------------------------------------------------------------------------------------------------------
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);    } });