X-Trench-Run Hack

no more updates from now on. look at your highscore.

  1. // ==UserScript==
  2. // @name X-Trench-Run Hack
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.0
  5. // @description no more updates from now on. look at your highscore.
  6. // @author You
  7. // @match https://www.mathplayground.com/pg_x_trench_run.html
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Wait for the page to load
  16. window.addEventListener('load', function() {
  17. // Delay execution for 3 seconds
  18. setTimeout(function() {
  19. // Set the desired game data including coins and boosters
  20. localStorage.setItem('mjs-x-trench-run-v1.0.3', '{"sound":1,"music":0.5,"score":142543,"hasShownTutorial":false,"hasShownLaserGateTutorial":false,"laserGateTargetCount":6}');
  21. console.log('Hack Successful!');
  22. }, 500);
  23. });
  24. })();