654
This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/439340/1013843/nextrun-1.js
// ==UserScript==
// @name nextrun-1
// @description 654
// @version 1.0.0
// @license MIT
// @namespace Kaznacheev
// ==/UserScript==
function next(){
var res =0;
if ($('#double_your_btc_payout_multiplier').val()=="6.00"&&res==0) {
$('#double_your_btc_payout_multiplier').val("5.00");
res =1;
}
if ($('#double_your_btc_payout_multiplier').val()=="5.00"&&res==0) {
$('#double_your_btc_payout_multiplier').val("4.00");
res =1;
}
if ($('#double_your_btc_payout_multiplier').val()=="4.00"&&res==0) {
$('#double_your_btc_payout_multiplier').val("6.00");
$('#double_your_btc_stake').val($('#double_your_btc_stake').val()*2);
res =1;
}
}