Strudels

AoA Stop Reloads

Sep 19th, 2025
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         AoA Stop Reloads
  3. // @namespace    http://tampermonkey.net/
  4. // @version      2025-09-19
  5. // @description  Stop AoA from reloading or navigating away
  6. // @author       Rippy
  7. // @match        http*://*.neopets.com/games/attackonaltador/*
  8. // @icon         https://www.google.com/s2/favicons?sz=64&domain=neopets.com
  9. // @grant        none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     window.onbeforeunload = function() {
  14.         return 'tnt why';
  15.     }
  16. })();
Advertisement
Add Comment
Please, Sign In to add comment