You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want a small snippet while waiting, put that in your console : var loop = 1; console.log('Farm Catcher Loop Started !'); console.log('To stop type : loop=0'); while (loop == 1){ for (let i = 0; i < 25; i++) { var d = $('.plot > .plot-content > .plotImage')[i]; if($(d).children('.pokemonSprite').length > 0) { $(d).children('.plotButton').click(); console.log('Wandering Pokemon caught !'); } } await new Promise(r => setTimeout(r, 30000)); } console.log('Loop Stoped !');
It will catch every wandering pokemon every 30 seconds.
If you want to stop it just set "loop" to 0
With the recent change to the farm it would be great if the script auto clicked on the wandering pokemons too.
The text was updated successfully, but these errors were encountered: