Greasy Fork is available in English.

nextrun-1

654

Dit script moet niet direct worden geïnstalleerd - het is een bibliotheek voor andere scripts om op te nemen met de meta-richtlijn // @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;
  }
}