Even more precise location of nearby pokemon ON MAP! menu

User Tag List

Page 9 of 36 FirstFirst ... 5678910111213 ... LastLast
Results 121 to 135 of 533
  1. #121
    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 WoWSondermüll View Post
    now we get a cross pattern :X

    Attachment 27246
    then its working correctly, just check if the center of the cross is the location u defined in the script.
    the script add an offset to each cardinal direction (north, south, east, west)

    Even more precise location of nearby pokemon ON MAP!
  2. #122
    Subversion2's Avatar Contributor
    Reputation
    108
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    68/41
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by piotr55 View Post
    ^^ exactly this u have to do. confirmed working

    fix for only walking north (not fully tested)

    replace lines 347 - 354 in example.py
    Code:
            if pos is 1:
                set_location_coords(origin.lat().degrees+offset, origin.lng().degrees-offset, 0)
            elif pos is 2:
                set_location_coords(origin.lat().degrees+offset, origin.lng().degrees+offset, 0)
            elif pos is 3:
                set_location_coords(origin.lat().degrees-offset, origin.lng().degrees-offset, 0)
            elif pos is 4:
                set_location_coords(origin.lat().degrees-offset, origin.lng().degrees+offset, 0)
    can't get this to work yet, just says "press any button to continue" in cmd

  3. #123
    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 Subversion2 View Post
    can't get this to work yet, just says "press any button to continue" in cmd
    try this example.py: [Python] # coding: utf-8 from flask import Flask, render_template from flask_googlema - Pastebin.com

  4. Thanks Subversion2 (1 members gave Thanks to piotr55 for this useful post)
  5. #124
    ~OddBall~'s Avatar Contributor
    Reputation
    207
    Join Date
    Jan 2008
    Posts
    1,156
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've tried probably 30 times and am getting the RCP server offline error or Attribute None error
    https://www.mmowned.com/forums/world-of-warcraft/guides/278302-selecting-bot-you.html - SELECTING THE BOT FOR YOU

    PHWOOOOAAAAAR - Parog was here. <3 <----Wtf's a Parog?

  6. #125
    Subversion2's Avatar Contributor
    Reputation
    108
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    68/41
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    that worked, good man!

    Edit: the script worked, but it still shows only one direction
    Last edited by Subversion2; 07-17-2016 at 07:19 AM.

  7. Thanks piotr55 (1 members gave Thanks to Subversion2 for this useful post)
  8. #126
    Ehnoah's Avatar Elite User
    Reputation
    398
    Join Date
    Sep 2006
    Posts
    1,028
    Thanks G/R
    16/96
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    pip install geopypip install protobuf
    pip install requests
    pip install flask-googlemaps


    pip install s2sphere


    pip install requests


    pip install flask

    If you have issues with requirements.txt

  9. #127
    Silch HD's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    25
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pretty awesome, wish the readius was bit bigger as it loads so slow

  10. #128
    patomm'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)
    I cannot install requirements.txt proparly.
    How Can I fix this issue ?

    after typing install -r requirements.txt on cd C:/Pogo

    Even more precise location of nearby pokemon ON MAP!-d971b099208b4cc49684ab74387ffb6a-jpg
    http://prntscr.com/btydxl (bigger ss)

    btw I don't have any antivirus and firewall opened

    fixed with installing these on python27 folder

    pip install geopypip install protobuf
    pip install requests
    pip install flask-googlemaps


    pip install s2sphere


    pip install requests


    pip install flask
    Last edited by patomm; 07-17-2016 at 08:03 AM.

  11. #129
    Subversion2's Avatar Contributor
    Reputation
    108
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    68/41
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by piotr55 View Post
    ^^ exactly this u have to do. confirmed working

    fix for only walking north (not fully tested)

    replace lines 347 - 354 in example.py
    Code:
            if pos is 1:
                set_location_coords(origin.lat().degrees+offset, origin.lng().degrees-offset, 0)
            elif pos is 2:
                set_location_coords(origin.lat().degrees+offset, origin.lng().degrees+offset, 0)
            elif pos is 3:
                set_location_coords(origin.lat().degrees-offset, origin.lng().degrees-offset, 0)
            elif pos is 4:
                set_location_coords(origin.lat().degrees-offset, origin.lng().degrees+offset, 0)
    Are you sure to replace lines 347-354? Do you have a different 347-354? That doesn't make coding sense, as 347-354 is necessary code that we don't want to replace:

    Code:
     # print(diff)
                difflat = diff.lat().degrees
                difflng = diff.lng().degrees
                time_to_hidden = poke.TimeTillHiddenMs
                left = '%d hours %d minutes %d seconds' % time_left(time_to_hidden)
                label = '%s [%s remaining]' % (pokemonsJSON[poke.pokemon.PokemonId - 1]['Name'], left)
                pokemons.append([poke.pokemon.PokemonId, label, poke.Latitude, poke.Longitude])
            offset = (steps*default_step)

  12. #130
    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 Subversion2 View Post
    Are you sure to replace lines 347-354? Do you have a different 347-354? That doesn't make coding sense, as 347-354 is necessary code that we don't want to replace:
    search for sth like:

    if pos is 1:
    set_location_coords(

  13. #131
    Subversion2's Avatar Contributor
    Reputation
    108
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    68/41
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Subversion2 View Post
    Are you sure to replace lines 347-354? Do you have a different 347-354? That doesn't make coding sense, as 347-354 is necessary code that we don't want to replace:

    Code:
     # print(diff)
                difflat = diff.lat().degrees
                difflng = diff.lng().degrees
                time_to_hidden = poke.TimeTillHiddenMs
                left = '%d hours %d minutes %d seconds' % time_left(time_to_hidden)
                label = '%s [%s remaining]' % (pokemonsJSON[poke.pokemon.PokemonId - 1]['Name'], left)
                pokemons.append([poke.pokemon.PokemonId, label, poke.Latitude, poke.Longitude])
            offset = (steps*default_step)
    Ok I got it working. Had to replace lines 355-362, or just replace "latlng" with "origin" on each of those lines to make it simpler.

  14. #132
    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 Subversion2 View Post
    ...or just replace "latlng" with "origin" on each of those lines...
    exactly this ^^

  15. #133
    linusman216's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please please anybody help with this: UnicodeDecodeError: 'utf8' codec can't decode byte 0x86 in position 3: 'utf8' codec can't decode byte 0x86 in position 3: invalid start byte in field: ResponseEnvelop.Profile.unknown11

    So many people having issues with it.

  16. #134
    Syncness's Avatar Legendary
    Reputation
    695
    Join Date
    Dec 2007
    Posts
    953
    Thanks G/R
    2/65
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Got no idea about the utf8 error sorry. What's your location parameter look like?
    Double check you're trading with me in case of impostors

  17. #135
    diometra's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I used yout method for about 5 hours but I keep getting a strange error now. Can you help me to fix it, please?

    127.0.0.1 - - [17/Jul/2016 15:07:20] "GET / HTTP/1.1" 500 -
    Traceback (most recent call last):
    File "C:\Python27\lib\site-packages\flask\app.py", line 2000, in __call__
    return self.wsgi_app(environ, start_response)
    File "C:\Python27\lib\site-packages\flask\app.py", line 1991, in wsgi_app
    response = self.make_response(self.handle_exception(e))
    File "C:\Python27\lib\site-packages\flask\app.py", line 1567, in handle_except
    ion
    reraise(exc_type, exc_value, tb)
    File "C:\Python27\lib\site-packages\flask\app.py", line 1988, in wsgi_app
    response = self.full_dispatch_request()
    File "C:\Python27\lib\site-packages\flask\app.py", line 1641, in full_dispatch
    _request
    rv = self.handle_user_exception(e)
    File "C:\Python27\lib\site-packages\flask\app.py", line 1544, in handle_user_e
    xception
    reraise(exc_type, exc_value, tb)
    File "C:\Python27\lib\site-packages\flask\app.py", line 1639, in full_dispatch
    _request
    rv = self.dispatch_request()
    File "C:\Python27\lib\site-packages\flask\app.py", line 1625, in dispatch_requ
    est
    return self.view_functions[rule.endpoint](**req.view_args)
    File "C:\Pogo\example.py", line 241, in fullmap
    main()
    File "C:\Pogo\example.py", line 287, in main
    access_token = login_ptc(args.username, args.password)
    File "C:\Pogo\example.py", line 176, in login_ptc
    jdata = json.loads(r.content)
    File "C:\Python27\lib\json\__init__.py", line 339, in loads
    return _default_decoder.decode(s)
    File "C:\Python27\lib\json\decoder.py", line 364, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
    File "C:\Python27\lib\json\decoder.py", line 382, in raw_decode
    raise ValueError("No JSON object could be decoded")
    ValueError: No JSON object could be decoded
    127.0.0.1 - - [17/Jul/2016 15:07:20] "GET /?__debugger__=yes&cmd=resource&f=styl
    e.css HTTP/1.1" 200 -
    127.0.0.1 - - [17/Jul/2016 15:07:20] "GET /?__debugger__=yes&cmd=resource&f=jque
    ry.js HTTP/1.1" 200 -
    127.0.0.1 - - [17/Jul/2016 15:07:20] "GET /?__debugger__=yes&cmd=resource&f=debu
    gger.js HTTP/1.1" 200 -
    127.0.0.1 - - [17/Jul/2016 15:07:20] "GET /?__debugger__=yes&cmd=resource&f=ubun
    tu.ttf HTTP/1.1" 200 -
    127.0.0.1 - - [17/Jul/2016 15:07:20] "GET /?__debugger__=yes&cmd=resource&f=cons
    ole.png HTTP/1.1" 200 -
    It also seems like that I'm not able to LogIn anymore. Is there a way to check if I got banned?
    Last edited by diometra; 07-17-2016 at 08:16 AM.

Page 9 of 36 FirstFirst ... 5678910111213 ... LastLast

Similar Threads

  1. [Hack] [iOS] Pokemon GO - Fake Location, Find Rare Pokemon, Teleport and more!
    By deleteduser2025j in forum Pokemon GO Hacks|Cheats
    Replies: 22
    Last Post: 10-27-2016, 01:20 PM
  2. [Bug] Helping Fixing Bug on Pokemon Go Precise Location
    By Loyepop in forum Pokemon GO Chat
    Replies: 1
    Last Post: 07-18-2016, 10:31 PM
  3. [Guide] Get precise location of nearby Pokemon
    By Syncness in forum Pokemon GO Hacks|Cheats
    Replies: 123
    Last Post: 07-17-2016, 07:43 PM
  4. skip even MORE trash in SP!
    By Canttouchdis in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 09-01-2007, 11:56 AM
  5. Making my imba hunter even more imba :)
    By Opey in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 10-16-2006, 03:33 AM
All times are GMT -5. The time now is 04:47 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