Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Auto sprzedaż danego itemka 2
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match http://deimos.margonem.pl/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var _gA = _g;
  12. _g = function (a) {
  13. if(a.indexOf("shop") > -1) {
  14. var toSell = "";
  15. for(i in g.item){
  16. if(g.item[i].name == "Język maddoka" && g.item[i].own == hero.id){
  17. toSell += ","+g.item[i].id;
  18. }
  19. }
  20. a += toSell;
  21. }
  22. return _gA.apply(this, arguments);
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement