// ==UserScript== // @name zjadacz złota v0.1 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author - // @match http://brutal.margonem.pl/ // @match https://brutal.margonem.pl/ // @match http://gefion.margonem.pl/ // @match https://gefion.margonem.pl/ // @match http://jaruna.margonem.pl/ // @match https://jaruna.margonem.pl/ // @match http://tarhuna.margonem.pl // @match http://game7.margonem.pl/ // @match https://game7.margonem.pl/ // @match http://www.margonem.pl/ // @match https://www.margonem.pl/ // @match http://lelwani.margonem.pl/ // @match http://husaria.margonem.com // @match https://game3.margonem.pl/ // @match http://game3.margonem.pl/ // @match http://*.margonem.com/ // @match https://*.margonem.com/ // @match http://steamrealm.margonem.com/ // @grant none // ==/UserScript== function ZjedzZloto() { for (k in g.item) { if ((g.item[k].loc == "g") && (g.item[k].stat.search("gold") > -1)) _g("moveitem&st=1&id=" + k); } } var Zloto_Item = newItem; newItem = function (i){ var zz = Zloto_Item(i); ZjedzZloto(); return zz; }