Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
15,756
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. // var d = new Date();
  2. d.setTime(d.getTime() + 3600000 * 24 * 30);
  3. if (getCookie('acceptHeros') == null) setCookie('acceptHeros', 'false', d);
  4.  
  5. var acceptHeros = mAlert;
  6. mAlert = function(a, c, d, b) {
  7. acceptHeros(a, c, d, b);
  8. if (getCookie('acceptHeros') == 'true' && a.indexOf('przyzywa do siebie swoją drużynę') != -1) $('#a_ok').click();
  9. };
  10.  
  11. g.loadQueue.push({
  12. fun: function() {
  13. $('<div id="checkboxheros">Automatyczne akceptowanie przywołania na herosa<br></div>').appendTo('#cfg_options').click(function() {
  14. if ($('#checkboxheros').attr('style') == 'background-position: 0px -22px') {
  15. $('#checkboxheros').attr('style', 'background-position: 0px 0px');
  16. setCookie('acceptHeros', 'false', d)
  17. } else {
  18. $('#checkboxheros').attr('style', 'background-position: 0px -22px');
  19. setCookie('acceptHeros', 'true', d)
  20. }
  21. });
  22. if (getCookie('acceptHeros') == 'true') $('#checkboxheros').attr('style', 'background-position: 0px -22px');
  23. else $('#checkboxheros').attr('style', 'background-position: 0px 0px');
  24. },
  25. data: ''
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement