PokemonGo-Bot-Desktop
PokemonGo-Bot-Desktop copied to clipboard
[SOLVED] Bot Status Lacking Information
Issue without proper information won't be answered
Expected Behavior
"Walking to [INSERT POKEMON NAME] or Walking to Fort [FORT NAME]
Actual Behavior
Walking to Fort [FORT NAME] works, does not update with pokemon, just says loading...
Steps to Reproduce
SOLVED SEE BELOW.
Information
- OS - Windows
In resources/app/app/index.js search for "MoveToFort" and you should see something along the lines of
if (log.worker == "MoveToFort") {
$("#bot-indicator").html("<b><div id='indicator'></div>Bot Status</b><br>" + log.message);
pingIndicator();
return;
}
Replace that section with
if(log.worker == "MoveToFort"|| log.worker == "MoveToMapPokemon")
{
$("#bot-indicator").html("<b><div id='indicator'></div>Bot Status</b><br>"+log.message);
pingIndicator();
return;
}
Voila, you bot will now display
Hope this helps others!
Didn't work for me. Tried it and nothing changed. (Mac OS X 10.10.5)