Autopoke
Autopoke is a hobby automation script collection for
Also works on the Desktop version CTRL+SHIFT+I to open Console
Paste in console
(function () {
const checkReady = setInterval(function () {
if (typeof App.game !== 'undefined') {
if (typeof App.game.interval !== 'undefined') {
let script = document.createElement('script');
script.id = 'AutoPoke';
script.src = 'https://Kazeshinu.github.io/Autopoke/Autopoke.js';
script.setAttribute('crossorigin', "anonymous");
document.head.appendChild(script);
clearInterval(checkReady);
}
}
}, 1000);
})();
Desktop version available at GitHub:
How to use
This needs to be run in console.
For the Desktop version open console with CTRL+SHIFT+I
Run this in console: https://kazeshinu.github.io/Autopoke/Autopoke.js to load and start all modules or individual modules: https://kazeshinu.github.io/Autopoke/modules/{MODULE_NAME_LOWERCASE}.js
Access your modules with Autopoke.module i.e Autopoke.dungeon.runs = 100
Autopoke.farming.Stop()