Auto-Updating pokemon go map menu

Shout-Out

User Tag List

Page 15 of 37 FirstFirst ... 111213141516171819 ... LastLast
Results 211 to 225 of 553
  1. #211
    Pokemonster's Avatar Master Sergeant
    Reputation
    15
    Join Date
    Jul 2016
    Posts
    108
    Thanks G/R
    4/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pwnerer View Post
    I am getting this error, maybe you can help me? Seems bottom is working fine but something goes wrong with the top.

    Attachment 27285
    Post the code of your Run2.bat please.

    Auto-Updating pokemon go map
  2. #212
    piotr55's Avatar Corporal
    Reputation
    14
    Join Date
    Sep 2012
    Posts
    34
    Thanks G/R
    2/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Yafa View Post
    Is there a way where you can copy the location of the pokemon in the map so you can paste it in the coordinates in nox ?
    edit index.html, search for "var listenerPair = {" and change lines (should be 96-104) to:
    Code:
                  var listenerPair = {
                    a: google.maps.event.addListener(marker, 'click', function() {
                      infowindow.setContent(this.title);
                      infowindow.open(map, this);
                    }),
    
    //               b: google.maps.event.addListener(marker, 'mouseout', function() {
    //                  infowindow.close(map, this);
    //                })

  3. #213
    Mike2012's Avatar Member
    Reputation
    8
    Join Date
    Oct 2012
    Posts
    85
    Thanks G/R
    44/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So... I just can't make it work here..

    I am using Method 2. - When I start run1 and start the webserver it's all fine.

    But when I start run2.bat it loads the map, starts another cmd-window and doesnt log in, but if I close the chrome.exe the cmd-window loggs in and seems to work properly.. but it's showing all those pokemon in those command lines.



    My Run2.bat
    Code:
    "C:\Program Files (x86)\Google\Chrome\Application\Chrome.exe" 127.0.0.1:8000/index.html --args --disable-web-security --allow-file-access-from-files
    "C:\Python27\python.exe" main.py -u XXX -p XXX -l "40.76487234, -73.97274703"
    What should I do ?
    Help please.
    Last edited by Mike2012; 07-18-2016 at 05:01 AM.

  4. #214
    gurkensalat88's Avatar Member
    Reputation
    5
    Join Date
    Dec 2014
    Posts
    18
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also in the index.html at line 134 change

    Code:
    title: "<b>"+p.name+"</b><br>Time left: " + p.poketime + "<br>Lat: "+p.lat+"<br>Long: "+p.lng,
    to

    Code:
    title: "<b>"+p.name+"</b><br>Time left: " + p.poketime +"<br>" +p.lat+", "+p.lng,
    Then you can fast double-click the location and Copy, Paste it as a valid string.

  5. #215
    Yafa's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Auto-Updating pokemon go map-pinonmap-jpg
    In google maps there is a function where you can place a pin on the map and get the coordinates, is there a way to implement that function into the poke map ?

    Or get the box with the name of the pokemon and coordinates to stay open when you click on it until you close it instead of it appearing when you are hovering over the pokemon.
    Last edited by Yafa; 07-18-2016 at 05:09 AM.

  6. #216
    decaphiltrator's Avatar Member
    Reputation
    5
    Join Date
    Oct 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Pokemonster View Post
    Do not use the same account for this tool and for the catching of the pokemon. It will result in a ban for sure. It is better to have a new pokemon trainer club account for this tool.
    yea i am using a new throw away for the searching, and just drive to the location if i see a rare ^_^ was just noting some things that need to be fixed i beleive.

  7. #217
    Pokemonster's Avatar Master Sergeant
    Reputation
    15
    Join Date
    Jul 2016
    Posts
    108
    Thanks G/R
    4/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mike2012 View Post
    So... I just can't make it work here..

    I am using Method 2. - When I start run1 and start the webserver it's all fine.

    But when I start run2.bat it loads the map, starts another cmd-window and doesnt log in, but if I close the chrome.exe the cmd-window loggs in and seems to work properly.. but it's showing all those pokemon in those command lines.

    I do not use Chrome. I had the same problem with chrome. I just removed the starting of chrome in run2.bat and run the bat and then open the webpage in firefox (127.0.0.1:8000/index.html)

  8. Thanks Mike2012 (1 members gave Thanks to Pokemonster for this useful post)
  9. #218
    Mike2012's Avatar Member
    Reputation
    8
    Join Date
    Oct 2012
    Posts
    85
    Thanks G/R
    44/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Pokemonster View Post
    I do not use Chrome. I had the same problem with chrome. I just removed the starting of chrome in run2.bat and run the bat and then open the webpage in firefox (127.0.0.1:8000/index.html)
    fml lol.. it works with firefox.. lol You have my thanks sir !

  10. #219
    Kotzu's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Tobbo88 View Post
    Hwo I fixed it was... Clear cache on browser then run the run2 as admin (it will insta close) then run it normally
    fix what? by deleting cache

  11. #220
    piotr55's Avatar Corporal
    Reputation
    14
    Join Date
    Sep 2012
    Posts
    34
    Thanks G/R
    2/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by piotr55 View Post
    edit index.html, search for "var listenerPair = {" and change lines (should be 96-104) to:
    Code:
                  var listenerPair = {
                    a: google.maps.event.addListener(marker, 'click', function() {
                      infowindow.setContent(this.title);
                      infowindow.open(map, this);
                    }),
    
    //               b: google.maps.event.addListener(marker, 'mouseout', function() {
    //                  infowindow.close(map, this);
    //                })

    METHOD 2: (the better one )

    adds popup on doubleclick on marker showing the coords for copy & paste

    edit index.html, search for:
    Code:
                   b: google.maps.event.addListener(marker, 'mouseout', function() {
                      infowindow.close(map, this);
                    })
    replace with:

    Code:
                   b: google.maps.event.addListener(marker, 'mouseout', function() {
                      infowindow.close(map, this);
                    }),
    				
                   c: google.maps.event.addListener(marker, 'dblclick', function() {
                      window.prompt("", this.position.lat() + ", " + this.position.lng());
                    })

  12. Thanks newtonized (1 members gave Thanks to piotr55 for this useful post)
  13. #221
    ribery771's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm getting the error: Oops an error occured. I see the map with Pokemons for a second, then the error.

  14. #222
    senseirain's Avatar Member
    Reputation
    2
    Join Date
    Jun 2016
    Posts
    142
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mike2012 View Post
    fml lol.. it works with firefox.. lol You have my thanks sir !
    Didn't work for me,.. how did u manage to make it work?? gimme yo run.bat run2.bat codes please!,..

  15. #223
    Sheetka's Avatar Contributor Premium Account Seller
    CoreCoins Purchaser Authenticator enabled
    Reputation
    95
    Join Date
    Jan 2011
    Posts
    254
    Thanks G/R
    18/71
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Everything works fine for me, I just dont understand how to filter these pokemons out. And is there also a way to copy the pokemons coords from the map?

  16. #224
    senseirain's Avatar Member
    Reputation
    2
    Join Date
    Jun 2016
    Posts
    142
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by serotini View Post
    Everything works fine for me, I just dont understand how to filter these pokemons out. And is there also a way to copy the pokemons coords from the map?
    Gimme you're Run.bat and run2.bat Codes,..

  17. #225
    Pokemonster's Avatar Master Sergeant
    Reputation
    15
    Join Date
    Jul 2016
    Posts
    108
    Thanks G/R
    4/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by decaphiltrator View Post
    yea i am using a new throw away for the searching, and just drive to the location if i see a rare ^_^ was just noting some things that need to be fixed i beleive.
    If you use separate accounts how would the script be able to see that you catched the pokemon and delete it? After you catched the pokemon it will not disappear on the map so the script will keep seeing it...

Page 15 of 37 FirstFirst ... 111213141516171819 ... LastLast

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 09:01 PM. 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