Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. // ==UserScript==
  2. // @name OgarV4 mod [Nyx]
  3. // @namespace ogario.v4.b
  4. // @version 4.0.0.38
  5. // @description OgarV4-mod [alpha release]
  6. // @author szymy, Nyx
  7. // @match *://agar.io/*
  8. // @run-at document-start
  9. // @grant GM_xmlhttpRequest
  10. // @connect ogar-mod.ucoz.net
  11. // ==/UserScript==
  12.  
  13. if (location.host === "agar.io" && location.pathname === "/") {
  14. window.stop();
  15. location.href = "https://agar.io/ogario" + location.hash;
  16. }
  17.  
  18. GM_xmlhttpRequest({
  19. method : "GET",
  20. url : "https://ogar-mod.ucoz.net/v4/index.html",
  21. onload : function(e) {
  22. document.open();
  23. document.write(e.responseText);
  24. document.close();
  25. }
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement