Insurance's bitcoin method


SUBMITTED BY: newfred28

DATE: April 20, 2016, 11:33 a.m.

FORMAT: Text only

SIZE: 2.6 kB

HITS: 959

  1. Insurance's bitcoin method :)
  2. Here's a method to get the easiest Bitcoin you could ever receive.
  3. Step 1: Sign up under my referral link: http://freebitco.in/?r=983065
  4. (I will occasionally share my earnings with my referred users, up to 10 dollars per share)
  5. Step 2: Start your earning with the free bitcoin tab. Every hour you will be alerted with a sound letting you know that you can receive your free btc again.
  6. Step 3: Repeat step 2 until you have a decent amount (5k satoshi or .00005000 btc)
  7. Step 4: On the multiply BTC tab, copy and paste this script in the developer console (Ctrl+Shift+J) or right click > inspect element and then press enter to start the script.
  8. Optional: If you feel lucky, increase the number in the payout box to increase payout multiplier but lessen the chances of winning.
  9. There are many scripts out there that don't actually work. I can assure you this is fresh tested and works 100%
  10. Enjoy and Earn while you can !
  11. - Copy and paste the code below -
  12. bconfig = {
  13. maxBet: 0.0002200,
  14. wait: 1000,
  15. autoexit: 0.00001,
  16. want: 0.000014,
  17. toggleHilo:false,
  18. startbal: 0,
  19. won: 0,
  20. };
  21. hilo = 'hi';
  22. multiplier = 1;
  23. rollDice = function() {
  24. if ($('#double_your_btc_bet_lose').html() !== '') {
  25. $('#double_your_btc_2x').click();
  26. multiplier = 1;
  27. if(bconfig.toggleHilo)toggleHiLo();
  28. } else {
  29. $('#double_your_btc_min').click();
  30. multiplier = 1;
  31. }
  32. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  33. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  34. console.log($('#double_your_btc_min'));
  35. }
  36. if (parseFloat($('#balance').html()) < bconfig.autoexit) {
  37. throw "exit";
  38. }
  39. if (parseFloat($('#balance').html()) > bconfig.want) {
  40. var num = parseFloat($('#balance').html());
  41. bconfig.want = num + 0.00000030;
  42. bconfig.autoexit = num - 0.00000420;
  43. bconfig.won++;
  44. var total = num - bconfig.startbal;
  45. console.log('Setting bconfig want to: ' + bconfig.want)
  46. console.log('Setting autoexit to: ' + bconfig.autoexit)
  47. console.log('Total won: ' + total + ' BTC')
  48. }
  49. $('#double_your_btc_bet_hi_button').click();
  50. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
  51. };
  52. toggleHiLo = function() {
  53. if (hilo === 'hi') {
  54. hilo = 'hi';
  55. } else {
  56. hilo = 'hi';
  57. }
  58. };
  59. var num = parseFloat($('#balance').html());
  60. bconfig.startbal = num;
  61. bconfig.want = num + 0.00000030;
  62. bconfig.autoexit = num - 0.00000420;
  63. rollDice();

comments powered by Disqus