sample


SUBMITTED BY: Moulishekh

DATE: Jan. 4, 2017, 10:25 a.m.

FORMAT: Text only

SIZE: 435 Bytes

HITS: 1485

  1. function multiply(){
  2. var current = $('#double_your_btc_stake').val();
  3. var multiply = (current * 2).toFixed(8);
  4. $('#double_your_btc_stake').val(multiply);
  5. }
  6. function getRandomWait(){
  7. var wait = Math.floor(Math.random() * maxWait ) + 100;
  8. console.log('Waiting for ' + wait + 'ms before next bet.');
  9. return wait ;
  10. }
  11. function startGame(){
  12. console.log('Game started!');
  13. reset();
  14. $loButton.trigger('click');
  15. }

comments powered by Disqus