Script


SUBMITTED BY: Sadha

DATE: April 10, 2016, 9:06 a.m.

FORMAT: Text only

SIZE: 543 Bytes

HITS: 888

  1. Online Script
  2. var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
  3. stopPercentage = 0.001,
  4. maxWait = 777,
  5. stopped = false, // debugging
  6. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  7. var $loButton = $('#double_your_btc_bet_lo_button'),
  8. $hiButton = $('#double_your_btc_bet_hi_button');
  9. function multiply(){
  10. var current = $('#double_your_btc_stake').val();
  11. var multiply = (current * 2).toFixed(8);
  12. $('#double_your_btc_stake').val(multiply);
  13. }

comments powered by Disqus