[BOT] freebitco.in autopilot


SUBMITTED BY: Guest

DATE: Oct. 3, 2014, 12:50 a.m.

FORMAT: Text only

SIZE: 3.2 kB

HITS: 1591

  1. http://freebitco.in/?r=462931 please use this referer address for registration thx
  2. Choose Multiply BTC. press f12 in the browser chrome, insert the script and press enter.
  3. var multiplyMyBTC = (function () {
  4. var randomString = function () {
  5. var charSet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
  6. var rString = '';
  7. for (var i = 0; i < 16; i++) {
  8. var randomPoz = Math.floor(Math.random() * charSet.length);
  9. rString += charSet.substring(randomPoz, randomPoz + 1);
  10. }
  11. return rString;
  12. };
  13. var balance = parseFloat($('#balance').html());
  14. var initialBet = 0.5 * balance / 100;
  15. initialBet = initialBet >= 0.00000001 ? initialBet : 0.00000001;
  16. var bet = initialBet;
  17. var client_seed = randomString();
  18. var multiplier = 2;
  19. var totalBTCTr = 0;
  20. window.multiplyBTC = true;
  21. window.toggleMultiplyBTC = function () {window.multiplyBTC = !window.multiplyBTC;};
  22. return function () {
  23. $.get('/?op=double_your_btc&m=' + ["hi", "lo"][Math.floor(Math.random() * 2)] + '&client_seed=' + client_seed + '&jackpot=0&stake=' + bet.toFixed(8) + '&multiplier=' + multiplier, function(data) {
  24. var result = data.split(":");
  25. if (result[0] == "s1") {
  26. balance = parseFloat(result[3]);
  27. if (result[1] == "w") {
  28. totalBTCTr += parseFloat(result[4]);
  29. console.log("+" + result[4] + " BTC, Total: " + totalBTCTr.toFixed(8));
  30. bet = initialBet;
  31. } else if (result[1] == "l") {
  32. totalBTCTr -= parseFloat(result[4]);
  33. console.log("-" + result[4] + " BTC, Total: " + totalBTCTr.toFixed(8));
  34. if(bet * 4 < balance) {
  35. bet *= 2;
  36. } else {
  37. bet = initialBet;
  38. }
  39. }
  40. $('#balance').html(result[3]);
  41. client_seed = randomString();
  42. if(window.multiplyBTC) {
  43. multiplyMyBTC();
  44. }
  45. } else {
  46. $('#double_your_btc_error').show();
  47. BetErrors(result[0]);
  48. }
  49. });
  50. }
  51. })();
  52. multiplyMyBTC();

comments powered by Disqus