Map

Open Map for game CatLife Online!

  1. // ==UserScript==
  2. // @name Map
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-01-19
  5. // @description Open Map for game CatLife Online!
  6. // @author You
  7. // @match https://worldcats.ru/play/
  8. // @match https://worldcats.ru/play/?v=b
  9. // @match https://catlifeonline.com/play/
  10. // @match https://catlifeonline.com/play/?v=b
  11. // @icon https://www.google.com/s2/favicons?sz=64&domain=catlifeonline.com
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. // Function to set the animation speed
  19. function setAnimationSpeed() {
  20. try {
  21. Game.lastSeenLevel = Array.from({length: 1000}, (_, i) => (i + 1).toString());
  22. } catch (e) {
  23. console.error("Error setting animation speed:", e);
  24. }
  25. }
  26.  
  27. // Run the function at regular intervals
  28. setInterval(setAnimationSpeed, 1000); // Adjust interval as needed (currently 1 second)
  29. })();

QingJ © 2025

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