Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Zajmowanie v2
  3. // @version 0.1
  4. // @description Poprawione Auto-Zajmowanie
  5. // @match http://unia.margonem.pl/
  6. // @match http://unia.margonem.pl/
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. var d = new Date(); d.setTime(d.getTime() + 3600000 * 24 * 30);
  11. if(getCookie('heroTake') == null)
  12. setCookie('heroTake','false',d);
  13. g.loadQueue.push({fun: function () {
  14. $('<div id="canitakeit">Zajmowanie herosa na czacie</div>').appendTo('#cfg_options').click(function(){
  15. if($('#canitakeit').attr('style') == 'background-position: 0px -22px'){
  16. $('#canitakeit').attr('style', 'background-position: 0px 0px');
  17. setCookie('heroTake','false',d);
  18. }else{
  19. $('#canitakeit').attr('style', 'background-position: 0px -22px');
  20. setCookie('heroTake','true',d);
  21. }
  22. });
  23. if(getCookie('heroTake') == 'true')
  24. $('#canitakeit').attr('style', 'background-position: 0px -22px');
  25. else
  26. $('#canitakeit').attr('style', 'background-position: 0px 0px');
  27. }, data: ''});
  28. var j3bac_achaje = newNpc;
  29. var link = window.location.host.replace("game", "").replace(".margonem.pl", "");
  30. newNpc = function (p) {
  31. j3bac_achaje(p);
  32. for (x in p) {
  33. if (p[x].wt > 79){
  34. if(getCookie('heroTake') == 'true')
  35. chatSend('Zajmuję herosa ' + p[x].nick + '!') ;
  36. }
  37. }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement