Cookie Clicker Auto-Clicker

Cookie Clicker Auto click

  1. // ==UserScript==
  2. // @name Cookie Clicker Auto-Clicker
  3. // @namespace https://github.com/SuperPommeDeTerre
  4. // @version 1.1
  5. // @description Cookie Clicker Auto click
  6. // @author aoh72931
  7. // @match http://cafe-capy.net/cookieclicker/
  8. // @match http://orteil.dashnet.org/cookieclicker/
  9. // @grant aoh72931
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. function ClickGoldenCookie() {
  14. for( var i in Game.shimmers ) {
  15. var s = Game.shimmers[i];
  16. if (s.type == "golden") {
  17. s.pop();
  18. }
  19. }
  20. }
  21. setInterval(function() {Game.ClickCookie(); }, 0.1);
  22. setInterval(function() {
  23. for( var i in Game.shimmers ) {
  24. var s = Game.shimmers[i];
  25. if( s.type == "golden" )
  26. s.pop();
  27. }
  28. }, 100);
  29. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址