Facebook
From Botched Parrot, 3 Years ago, written in Plain Text.
This paste is a reply to Re: Untitled from Scorching Shama - go back
Embed
Viewing differences between Re: Untitled and Re: Re: Untitled
// ==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);