bpoole

findtheinvisiblecow.com JS Hack

Jun 23rd, 2014
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //paste the following into your browser's console to automate finding a cow at findtheinvisiblecow.com (after you started the game)
  2. //here's how to get to your browser's console: http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers
  3. get_cow( );
  4. function get_cow( ){
  5.     find.click({x: find.animal.pos.x, y: find.animal.pos.y});
  6.     setTimeout("restart_cow( )", 3000);
  7. }
  8. function restart_cow( ){
  9.     find.gameStart( );
  10.     get_cow( );
  11. }
Add Comment
Please, Sign In to add comment