enigma

3||4||5

当前为 2022-01-25 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name enigma
  3. // @description 3||4||5
  4. // @include https://freebitco.in/*
  5. // @require https://greasyfork.org/scripts/439122-profitrunes/code/profitrunes.js?version=1012529
  6. // @require https://greasyfork.org/scripts/439109-nextrun/code/nextrun.js?version=1012491
  7. // @version 1.0.0
  8. // @license MIT
  9. // @namespace Kaznacheev
  10. // ==/UserScript==
  11.  
  12.  
  13. var profit = prompt("укажите доход блока от 3 до 5 чтобы начать автоигру", "3");
  14. $(document).ready(function($){
  15. profitrunes(profit);
  16. $('#double_your_btc_bet_lo_button').click();
  17. });
  18. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event) {
  19. if ($(event.currentTarget).is(':contains("lose")')) {
  20. next();
  21. setTimeout($('#double_your_btc_bet_lo_button').click(),15000);
  22. }
  23. });
  24. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event) {
  25. if ($(event.currentTarget).is(':contains("win")')) {
  26. profitrunes(profit);
  27. setTimeout($('#double_your_btc_bet_lo_button').click(),35000);
  28. }
  29. });