AeonLucid / POGOProtos

A central repository for all proto files of PokémonGO.
MIT License
726 stars 279 forks source link

Nickname_Pokemon returns either status 2(invalid name) or 3(pokemon not found) #84

Closed pimpcapital closed 7 years ago

pimpcapital commented 8 years ago

using python compiled version v1.0

2 fields:

e.g. pokemon_id = (the super long pokemon integer id from pokemon['id']) nickname = "test123" response {status: 3}

pokemon_id = (the super long pokemon integer id from pokemon['id']) nickname = "12.34-56A-78B-90D" # too long response {status: 2}

I was planning to use the nickname feature to tag my pokemons with their IV values. All chars are ASCII, so there shouldn't be any encoding issue.

pimpcapital commented 8 years ago

maybe need a fix similar to #75

pimpcapital commented 8 years ago

confirmed. uint64 is the right type.

pimpcapital commented 8 years ago

created #85 for this fix

AeonLucid commented 7 years ago

Closing this issue, let me know if this is still relevant.