Facebook
From Botched Parrot, 4 Years ago, written in Plain Text.
This paste is a reply to Re: Untitled from Scorching Shama - view diff
Embed
Download Paste or View Raw
Hits: 218
  1. // ==UserScript==
  2. // @name         New AR
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       Czogi
  7. // @match        http://zemyna.margonem.pl/
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. function move(x,y){
  12. hero._Move(x,y)
  13. }
  14.  
  15. setInterval(function(){
  16. var pos = [hero.x,hero.y];
  17. if(hero.isMoving ==4){move(pos[0],pos[1]-1)
  18. setTimeout(function(){
  19. var pos = [hero.x,hero.y];
  20. move(pos[0],pos[1]+1)},600)}},240000);