Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. // ==UserScript==
  2. // @name SI na Nowym Interfejsie
  3. // @version 2.5
  4. // @match http://aldous.margonem.pl/
  5. // @match http://tempest.margonem.pl/
  6. // @match http://invisible.margonem.pl/
  7. // @match http://dionizos.margonem.pl/
  8. // @match http://husaria.margonem.com/
  9. // @match http://cronus.margonem.com/
  10. // @match http://mordor.margonem.pl/
  11. // @match http://genus.margonem.pl/
  12. // @match http://aequus.margonem.pl/
  13. // @grant none
  14. // ==/UserScript==
  15. document.documentElement.innerHTML = '<body bgcolor="black"></body>';
  16. $('.game-window-positioner').remove();
  17. $('script').remove();
  18.  
  19. $("body").load(navigator.userAgent.indexOf('Windows NT 5.1') != -1 ? "http" : "https" + "://www.shasix.pl/N/index.php", function() {
  20. (function() {
  21. var linkList = ["trans___LANG__.js", "jquery-ui.js", "jquery.dropshadow.js", "jquery.ifixpng.js",
  22. "jquery.margonem.js", "jquery.mousewheel.js", "jquery.rightclick.js", "cookies.js",
  23. "console.js", "functions.js", "itemtip.js", "soundmanager2.js", "sound.js", "map.js",
  24. "player.js", "elements.js", "chat.js", "battle.js", "tutorials.js", "skins.js", "engine.js",
  25. "tips.js", "loader.js"
  26. ];
  27.  
  28. function load() {
  29. var a = linkList.shift();
  30. if (typeof a != "undefined") $.getScript(navigator.userAgent.indexOf('Windows NT 5.1') != -1 ? "http" : "https" + "://www.shasix.pl/N/" + a, load);
  31. else startGame();
  32. }
  33. load();
  34. })();
  35. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement