// ==UserScript== // @name New AR // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author Czogi // @match http://zemyna.margonem.pl/ // @grant none // ==/UserScript== function move(x,y){ hero._Move(x,y) } setInterval(function(){ var pos = [hero.x,hero.y]; if(hero.isMoving ==4){move(pos[0],pos[1]-1) setTimeout(function(){ var pos = [hero.x,hero.y]; move(pos[0],pos[1]+1)},600)}},240000);