Auto-Updating pokemon go map menu

User Tag List

Page 37 of 37 FirstFirst ... 3334353637
Results 541 to 553 of 553
  1. #541
    Perryy's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Apparently there is a log in issue for PTC accounts.. Its down or unable to authenticate, I'm thinking it is on Niantic's side.

    Auto-Updating pokemon go map
  2. #542
    fokeiro's Avatar (⌐■_■)–︻╦╤─ – – –

    Authenticator enabled
    Reputation
    808
    Join Date
    Jul 2012
    Posts
    756
    Thanks G/R
    89/727
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sriyegna View Post
    Thanks to the devs who created this great script. This script has helped me immensely so I'll try and give back what I can.

    First of all, if you notice your chrome keeps showing old maps and old pokemon, try this.
    While you have chrome open, Ctrl+Shift+Delete, select "Cached Images and Files", clear browsing data.

    Second, here is my method of running multiple instances. It's not pretty, and very likely not the best way... but here it is.
    1. I create multiple folders of the scripts. Download it, copy it over so you have (lets use 3 for this guide) folders. Let's name those folders 5500, 5600, 5700. These are the random ports im assigning. These numbers don't really matter... but there are some values you shouldn't choose. I don't know enough about it to give advice.
    2. In each folder, create a run.bat containing this. This starts the server cmd minimized, starts chrome, and starts the genius pokefinder script. Remember to edit username, password, and location. You will also notice that I used port 5500, you can use whatever, but make sure you use a different number for each instance. So if you have one location for home, and one location for your local community center. Your home instance port # should be different from the community center port #.
    Code:
    start /min cmd /k "C:\Python27\python.exe" -m SimpleHTTPServer 5500
    start chrome http://127.0.0.1:5500
    python main.py -u USERNAME -p PASSWORD -l "LOCATION"
    pause
    3. Now go back one folder, so you can see the folders of all 3 instances. Create a runall.bat file. Pretty tedious way of doing it but we need to run the server from within the folder... so yeah. I googled how to write batch code lol.
    Code:
    cd 5500
    start run.bat
    cd ..
    cd 5600
    start run.bat
    cd ..
    cd 5700
    start run.bat
    Alright, now the most awesome thing. You know how you see all those useless rattatas and pidgeys and drowsees and whatnot, here is how you can disable/hide them from the map.
    1. Edit index.html (in each instance).
    2. Scroll down till you see the following lines.
    Code:
          data = {};
          map = null;
          markers = [];
          listeners = [];
          hidden_layers = [];
          layers = [];
          updated = false;
    3. After the last line, add
    Code:
    dontshow = ["Pidgey", "Rattata", "Zubat", "Golbat", "Drowzee", "Spearow", "Pidgeotto", "Hypno", "Pidgeotto", "Goldeen", "Shelder", "Jynx", "Krabby", "Fearow", "Caterpie", "Weedle", "Raticate"]
    These are the pokemon I chose to not show on the map. Add/remove whichever pokemons you want. I think it is case sensitive but I haven't checked.
    4. Scroll up till you see
    Code:
    if(hidden_layers.indexOf(p.name) == -1){
    5. ABOVE that line, add the following line
    Code:
    if (dontshow.indexOf(p.name) < 0) {
    6. Scroll down to
    Code:
    					listeners.push(listenerPair);
    					markers.push(marker);
    				  }
    After this line, add a }

    tada. no more crap on your map

    my index.html doesnt have if(hidden_layers.indexOf(p.name) == -1){ , where is this ?? seems my index.html use p.id instead of name but i would like to add this funtion to hide them all from start, if anyone can help
    Last edited by fokeiro; 07-22-2016 at 05:29 PM.

  3. Thanks DarkendnoxV1 (1 members gave Thanks to fokeiro for this useful post)
  4. #543
    sriyegna's Avatar Private
    Reputation
    22
    Join Date
    Jul 2016
    Posts
    9
    Thanks G/R
    4/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fokeiro View Post
    my index.html doesnt have if(hidden_layers.indexOf(p.name) == -1){ , where is this ?? seems my index.html use p.id instead of name but i would like to add this funtion to hide them all from start, if anyone can help
    Interesting... If you pm me your index.html file, I would be happy to try and help.

  5. #544
    alecto7's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ fokeiro use this instead of step 4
    Code:
    if (hidden_layers[p.id] != 1)
    @ sriyegna you forgot space after 'if'
    Code:
    if(hidden_layers.indexOf(p.name) == -1){

  6. Thanks sriyegna, fokeiro (2 members gave Thanks to alecto7 for this useful post)
  7. #545
    padman's Avatar Member
    Reputation
    14
    Join Date
    Apr 2007
    Posts
    41
    Thanks G/R
    6/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So there's been no updates on github for 3 days now, code is still bugged - it stops updating pokemons after 30min or so. Time to move on.

  8. #546
    kn0cturnal's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    22
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did anyone figure out that decodeunicode error? been looking for a way to get anywhere past the login but i just get a error now, its worked for a few days then its just randomly gave me the error.

  9. #547
    TheCompleteWeirdo's Avatar Active Member
    Reputation
    42
    Join Date
    Aug 2012
    Posts
    41
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I haven't been able to log in since earlier today, right now the error I'm getting is "possible wrong username/password"

  10. #548
    docdk's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    15
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it only for PTC or what, gives back error when typing in my info ^^

  11. #549
    fokeiro's Avatar (⌐■_■)–︻╦╤─ – – –

    Authenticator enabled
    Reputation
    808
    Join Date
    Jul 2012
    Posts
    756
    Thanks G/R
    89/727
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alecto7 View Post
    @ fokeiro use this instead of step 4
    Code:
    if (hidden_layers[p.id] != 1)
    @ sriyegna you forgot space after 'if'
    Code:
    if(hidden_layers.indexOf(p.name) == -1){
    how would it goes for step 5 ?

  12. #550
    TheCompleteWeirdo's Avatar Active Member
    Reputation
    42
    Join Date
    Aug 2012
    Posts
    41
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a way to increase the radius that this scans?

  13. #551
    fokeiro's Avatar (⌐■_■)–︻╦╤─ – – –

    Authenticator enabled
    Reputation
    808
    Join Date
    Jul 2012
    Posts
    756
    Thanks G/R
    89/727
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can anyone take a look at this map and see how the index.html can be fixed, other dont work for it nothign show, this one works fine but i want to hide the Pokemon permanently

    https://mega.nz/#!WNJH3CbD!sw9sHg8JW...0NdpWb49WTtuGs

  14. #552
    Perryy's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Getting errors when im scanning for pokemon out of my country.. But if im scanning inside my country it is fine.

  15. #553
    LuissRicardo's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It was all fine, but now it just doesn't find any pokémon anywhere. Is it just me? Did something happened?

Page 37 of 37 FirstFirst ... 3334353637

Similar Threads

  1. [How-To] Auto-updating Pokemon GO map scanner
    By Ashketchup in forum Pokemon GO Hacks|Cheats
    Replies: 0
    Last Post: 07-17-2016, 04:22 AM
  2. Best Wow Realmlist Changer (+ Auto Update)
    By Sikas in forum WoW EMU Programs
    Replies: 1
    Last Post: 01-09-2012, 06:26 AM
  3. How to make an auto updater! For noobs :)
    By EmiloZ in forum Programming
    Replies: 4
    Last Post: 03-27-2009, 03:54 PM
  4. [Question] Zygor auto update?
    By svampus in forum World of Warcraft General
    Replies: 0
    Last Post: 02-20-2009, 09:53 PM
  5. Auto Update of WoW
    By StefanSon in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 02-13-2008, 05:08 PM
All times are GMT -5. The time now is 06:31 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search