satoshibet


SUBMITTED BY: Guest

DATE: Oct. 28, 2013, 7:30 p.m.

FORMAT: Text only

SIZE: 1.5 kB

HITS: 112956

  1. // ==UserScript==
  2. //
  3. // @name SatownediBet
  4. //
  5. // @description Martingale Betting System for SatoshiBet.com
  6. //
  7. // @namespace
  8. //
  9. // @author XXX
  10. //
  11. // @version 1.4
  12. //
  13. // @include https://satoshibet.com/*
  14. //
  15. // @include http://satoshibet.com/*
  16. //
  17. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
  18. //
  19. // ==/UserScript==
  20. var startingBet = prompt("Please enter your starting bet here:", "Ex. 0.001");
  21. startingBet = parseFloat(startingBet);
  22. document.getElementById('bet-bt')
  23. .onclick = function () {
  24. function start() {
  25. setTimeout(start, 1000);
  26. var ifLose = document.getElementById('result-text')
  27. .innerHTML;
  28. if (ifLose.length > 4) {
  29. document.getElementById("bet-multiplier")
  30. .click();
  31. document.getElementById("bet-bt")
  32. .click();
  33. } else {
  34. var currentBet = document.getElementById('bet-amount')
  35. .value;
  36. for (x = currentBet; x != startingBet; x = x / 2) {
  37. document.getElementById("bet-divider")
  38. .click();
  39. }
  40. document.getElementById("bet-bt")
  41. .click();
  42. }
  43. };
  44. start();
  45. };

comments powered by Disqus