PokemonGoF / PokemonGo-Bot-Desktop

The Desktop version of Pokemon Go Bot script
MIT License
409 stars 115 forks source link

[SOLVED] Bot Status Lacking Information #230

Open luckofthelefty opened 8 years ago

luckofthelefty commented 8 years ago

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

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

image

Hope this helps others!

MrAppleMania commented 8 years ago

Didn't work for me. Tried it and nothing changed. (Mac OS X 10.10.5)