Freebitco.in Gambling Script (Martingale's Method)


SUBMITTED BY: ne0n

DATE: March 9, 2023, 7:41 p.m.

FORMAT: Text only

SIZE: 2.5 kB

HITS: 474

  1. On freebitco.in's high/low gambling page if you open up console and enter this script than the website will automatically place your high/low bets based off of Martingale's Probability Method.
  2. This method has a chance of exponentially increasing the Bitcoin you have on the faucet site by placing automated, intelligent bets at high speeds. Although I cannot guarantee profits (this is gambling) I have used this and gotten some significant profit.
  3. After running this for a minute or two you will notice a profit so I recommend taking the difference and not being too risky.
  4. Enjoy but be smart!
  5. // Customizable variables
  6. var minValue = 0.00000001;
  7. var maxLoss = 0.0000001;
  8. var aimedProfit = 0.000005;
  9. var maxOps = 50;
  10. // Don't touch anything after this
  11. var endResult = 0;
  12. var ops = 0;
  13. // Bets a given amount on a given button and returns the value ot the callback
  14. var bet = function(value, button, callback) {
  15. var buttonName = button ? 'lo' : 'hi';
  16. // We use site's api
  17. $.get('?op=double_your_btc&m=' + buttonName + '&stake=' + value + '&multiplier=2&jackpot=0', function(result) {
  18. var splittedResult = result.split(':');
  19. // We update the account balance, as we have it juste there
  20. $('#balance').html(splittedResult[3]);
  21. // We finally call the callback
  22. callback(value, button, splittedResult[1] === 'w');
  23. }
  24. );
  25. };
  26. // Main Martingale's method
  27. var martingale = function(value, button, result) {
  28. // We apply Martingale algorithm
  29. if (result || (value >= maxLoss && maxLoss !== 0)) {
  30. button = !button;
  31. newValue = minValue;
  32. }
  33. else
  34. newValue = 2 * value;
  35. // We compute new final result
  36. if (result)
  37. endResult += value;
  38. else
  39. endResult -= value;
  40. // We start over (and log misc data)
  41. console.log((result ? '+' : '-') + value);
  42. ops++;
  43. if ((ops < maxOps || maxOps === 0) && (endResult < aimedProfit || aimedProfit === 0))
  44. bet(newValue, button, martingale);
  45. else {
  46. console.log('Martingale finished in ' + ops + ' operations!');
  47. console.log('Result: ' + endResult);
  48. }
  49. };
  50. // Init operation
  51. martingale(minValue, false, false);

comments powered by Disqus