IV based evolve/transfer tool menu

User Tag List

Page 8 of 21 FirstFirst ... 456789101112 ... LastLast
Results 106 to 120 of 304
  1. #106
    husec's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    45
    Thanks G/R
    19/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the whitelist in GUI mode how does it work? I typed in Flareon and saved but then it just moved every Pokemon from transfer list over to Other tab?

    IV based evolve/transfer tool
  2. #107
    ts61fa's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Whenever i open, it command window opens it says loging in, in split second i see the list of pkmns but it immediately closes, the same with the UI version. What am i doing wrong?

  3. #108
    nightshock9's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by akopertoni73 View Post
    can you make a login for PTC , it works for google only
    In the config.json file are you changing the "auth_service" over to ptc? it's default is google

    Originally Posted by husec View Post
    the whitelist in GUI mode how does it work? I typed in Flareon and saved but then it just moved every Pokemon from transfer list over to Other tab?
    The setup I use so only my dratini (and others if need be) are the only ones that will transfer when you hit transfer, that worked is

    "white_list": "dratini,clefairy,eevee," so yours should look like this in the file if you only want flareon gone "white_list": "flareon"

    flareon should show up now in transfer list (just tested it to be sure)

  4. #109
    murf43143's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    17
    Thanks G/R
    9/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ts61fa View Post
    Whenever i open, it command window opens it says loging in, in split second i see the list of pkmns but it immediately closes, the same with the UI version. What am i doing wrong?
    Open the file manually using cmd.exe and navigate to the directory and start the program manually and see the error, that way nothing will close.

  5. #110
    imoutits's Avatar Master Sergeant
    Reputation
    51
    Join Date
    Jul 2016
    Posts
    91
    Thanks G/R
    0/43
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by murf43143 View Post
    This is working great, thank you.

    Problem I am having, when I go to transfer one using the GUI, it keeps transfering down the list and not doing just the one or ones I have selected. Is this intended?

    Thanks again, great program.
    That's intended. Specific evolution/transfer is not implemented (yet).

    Originally Posted by psyborg View Post
    Hey there, thanks for adding the specific evoloving, works great

    Now im little bit confused, Necrobot gives me slightly diffrent precentages then ur tool. (but only since like 1-2 days)
    Also i cant double check it with the Spreadsheet about IVs from Reddit

    Can u please look at it and tell us what is the most accurate atm?
    Just looked at his code and it's different. For simply taking an IV he puts more emphasis on attack:

    mine is (iv_atk + iv_def + iv_sta)/45
    his is (iv_atk*2 + iv_def + iv_sta)/60

    Originally Posted by noremac13 View Post
    So I just installed the Map addon but that required Python 2.7 so I had to uninstall 3 and reinstall 2.7. Now the map works but the GUI no longer works. I can still open PokeIV through CLI but for whatever reason just the GUI no longer works. Does the GUI part require Python 3 to work correctly?
    Just fixed this--I hadn't tested it on 2.7.
    Last edited by imoutits; 07-25-2016 at 09:41 AM.

  6. Thanks psyborg (1 members gave Thanks to imoutits for this useful post)
  7. #111
    psyborg's Avatar Member
    Reputation
    13
    Join Date
    Jul 2016
    Posts
    22
    Thanks G/R
    7/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great, since u can get the real IVs this is 100% accurate anyway
    Can u add a refresh button to the GUI?
    Last edited by psyborg; 07-25-2016 at 11:51 AM.

  8. #112
    MithosNL's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Aug 2013
    Posts
    61
    Thanks G/R
    2/1
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm still getting weird errors when trying with my PTC account (google works fine. I use this command for PTC: pokeIV.py -u myusername -p mypassword -l "40.784523 -73.966188".

    I am getting this error: Traceback (most recent call last):
    File "C:\Users\Peter\Desktop\pokemongoIV\pokeIV.py", line 239, in <module>
    main()
    File "C:\Users\Peter\Desktop\pokemongoIV\pokeIV.py", line 210, in main
    data = PokemonData(pokemon, candy, pokedex, family, cost, config)
    File "C:\Users\Peter\Desktop\pokemongoIV\pokemondata.py", line 147, in __init__
    self["extra"] = sorted(list(set(self["all"]) - set(self["best"])), key=lambda x: x.iv)
    KeyError: 'best'

    Even though when Im changing my username into my other Google Account it works fine. Any idea how to solve this?

  9. #113
    imoutits's Avatar Master Sergeant
    Reputation
    51
    Join Date
    Jul 2016
    Posts
    91
    Thanks G/R
    0/43
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MithosNL View Post
    I'm still getting weird errors when trying with my PTC account (google works fine. I use this command for PTC: pokeIV.py -u myusername -p mypassword -l "40.784523 -73.966188".

    I am getting this error: Traceback (most recent call last):
    File "C:\Users\Peter\Desktop\pokemongoIV\pokeIV.py", line 239, in <module>
    main()
    File "C:\Users\Peter\Desktop\pokemongoIV\pokeIV.py", line 210, in main
    data = PokemonData(pokemon, candy, pokedex, family, cost, config)
    File "C:\Users\Peter\Desktop\pokemongoIV\pokemondata.py", line 147, in __init__
    self["extra"] = sorted(list(set(self["all"]) - set(self["best"])), key=lambda x: x.iv)
    KeyError: 'best'

    Even though when Im changing my username into my other Google Account it works fine. Any idea how to solve this?
    When did you last update? That looks like an old bug...

    -----------------

    Okay I've just updated the GUI so you can transfer or evolve specific pokemon.

    Currently, there is no delay added so you can transfer/evolve as quickly as you want to. Hitting 'evolve' or 'transfer' with anything selected will cause it to be instantly transfered or evolved.

    Pressing the Escape key will remove your selection.

    Added the delay back--I wasn't happy with it being so fast. Now you can cancel if you're not happy with your selection.

    edit: You can sort by click on column headers now.
    edit: There's a refresh inventory button now.
    edit: The UI refreshes look a lot better now. It should no longer be choppy and buggy looking.
    Last edited by imoutits; 07-25-2016 at 04:13 PM.

  10. #114
    NoName27's Avatar Member
    Reputation
    11
    Join Date
    Jan 2009
    Posts
    15
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    everytime when I start the pokeIV.py it want a password. after insert one the program closed it self :/

    Secure Password Input (if there is no password prompt, use --password <pw>):
    Password:
    Creating Google session for None
    Traceback (most recent call last):
    File "\pokemongo-api-master\pokeIV-gui.py", line 162, in <module>
    main()
    File "\pokemongo-api-master\pokeIV-gui.py", line 130, in main
    session = poko_session.authenticate(config["location"])
    File "./pogo\api.py", line 143, in authenticate
    }[self.provider](locationLookup=locationLookup)
    File "./pogo\api.py", line 83, in createGoogleSession
    r1 = perform_master_login(self.username, self.password, ANDROID_ID)
    File "\Python\Python35\lib\site-packages\gpsoauth\__init__.py", line 56, in perform_master_login
    'EncryptedPasswd': google.signature(email, password, android_key_7_3_29),
    File "\Python\Python35\lib\site-packages\gpsoauth\google.py", line 50, in signature
    encrypted_login = cipher.encrypt((email + u'\x00' + password).encode('utf-8'))
    TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'
    I use the latest vision and installed python full with the installer from the first post (all checked)
    Last edited by NoName27; 07-25-2016 at 02:45 PM.

  11. #115
    imoutits's Avatar Master Sergeant
    Reputation
    51
    Join Date
    Jul 2016
    Posts
    91
    Thanks G/R
    0/43
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by NoName27 View Post
    everytime when I start the pokeIV.py it want a password. after insert one the program closed it self :/
    I use the latest vision and installed python full with the installer from the first post (all checked)
    It needs a username and location too...

  12. #116
    badinstincts's Avatar Sergeant
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    63
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't know if you updated the IV values, but they are different from what the Spegeli Bot is telling me... So which one is correct?

  13. #117
    imoutits's Avatar Master Sergeant
    Reputation
    51
    Join Date
    Jul 2016
    Posts
    91
    Thanks G/R
    0/43
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by badinstincts View Post
    I don't know if you updated the IV values, but they are different from what the Spegeli Bot is telling me... So which one is correct?
    It looks like that one uses the same API as the necrobot mentioned earlier. See my previous reply:

    Originally Posted by imoutits
    Just looked at his code and it's different. For simply taking an IV he puts more emphasis on attack:

    mine is (iv_atk + iv_def + iv_sta)/45
    his is (iv_atk*2 + iv_def + iv_sta)/60

  14. #118
    badinstincts's Avatar Sergeant
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    63
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well at least my Vaporeon is 100% in both, that's all that is important, lol.

  15. #119
    NoName27's Avatar Member
    Reputation
    11
    Join Date
    Jan 2009
    Posts
    15
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imoutits View Post
    It needs a username and location too...
    ah okay

    ok it work now with my PTC accounts. but google accounts with token will still not work :/

  16. #120
    joey4187's Avatar Member
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey so this bot is awesome exactly what i needed just for some reason the CP override is not working when i want to transfer anything below 90% but above 1000 cp. so if i hit hard minimum it take everything under 90% down but also take a bunch over 1000 cp...help?

Page 8 of 21 FirstFirst ... 456789101112 ... LastLast

Similar Threads

  1. [Tool] Is there a working transfer tool for pokemon go
    By Jay2OR in forum Pokemon GO Hacks|Cheats
    Replies: 6
    Last Post: 11-25-2016, 05:47 AM
  2. [Release] Pokemong Go Transfer Tool BOT/Sniper/Tool
    By Chromastone in forum Pokemon GO Hacks|Cheats
    Replies: 7
    Last Post: 09-25-2016, 12:05 PM
  3. [Tool] need tool for transferring and evolve pokemons
    By p0g in forum Pokemon GO Hacks|Cheats
    Replies: 4
    Last Post: 08-07-2016, 04:12 PM
  4. [How-To] Tool that transfer/ evolve / upgrade pokemons of your choosing.
    By rowxs in forum Pokemon GO Hacks|Cheats
    Replies: 3
    Last Post: 08-04-2016, 09:22 AM
  5. [Question] Bot that Transfers/Evolves based off IV% rather than CP
    By Cretch in forum Pokemon GO Chat
    Replies: 5
    Last Post: 07-26-2016, 06:09 PM
All times are GMT -5. The time now is 11:02 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