Martingale FreeBitCo.in Trick


SUBMITTED BY: Guest

DATE: Dec. 16, 2013, 12:42 a.m.

FORMAT: JavaScript

SIZE: 1.5 kB

HITS: 42093

  1. Step 1: Visit http://freebitco.in/?r=55202
  2. Step 2: Register
  3. Step 3: Get Free Bitcoins
  4. Step 4: Simple Game => Multiple your Cash using Martingale Trick
  5. Trik:
  6. 1. Using CHROME browser !!
  7. 2. Press ctrl+shift+J and copy paste the code > Press Enter
  8. //start
  9. var minValue = 0.00000001;
  10. var maxLoss = 0.00000512;
  11. var aimedProfit = 0.00000064;
  12. var maxOps = 300;
  13. var endResult = 0;
  14. var ops = 0;
  15. var bet = function(value, button, callback) {
  16. var buttonName = button ? 'lo' : 'hi';
  17. $.get('?op=double_your_btc&m=' + buttonName + '&stake=' + value + '&multiplier=2&jackpot=0', function(result) {
  18. var splittedResult = result.split(':');
  19. $('#balance').html(splittedResult[3]);
  20. callback(value, button, splittedResult[1] === 'w');
  21. }
  22. );
  23. };
  24. var martingale = function(value, button, result) {
  25. if (result || (value >= maxLoss && maxLoss !== 0)) {
  26. button = !button;
  27. newValue = minValue;
  28. }
  29. else
  30. newValue = 2 * value;
  31. if (result)
  32. endResult += value;
  33. else
  34. endResult -= value;
  35. console.log((result ? '+' : '-') + value);
  36. ops++;
  37. if ((ops < maxOps || maxOps === 0) && (endResult < aimedProfit || aimedProfit === 0))
  38. bet(newValue, button, martingale);
  39. else {
  40. console.log('Martingale finished in ' + ops + ' operations!');
  41. console.log('Result: ' + endResult);
  42. }
  43. };
  44. martingale(minValue, false, false);
  45. //end

comments powered by Disqus