-
Corporal
Originally Posted by
Standard0815
DRAGONITE - 34.02446743022035,-118.50951075553894 - 11mins
Another DRAGONITE Spot - 37.78365531208477,-122.50352382659912 - 13min
thanks buddie, guess level 10 is too low to try for him? we will meet again dragondude!
-
Member
all snorlax candy I'm getting is awesome, saving it for right snorlax
-
Member
Originally Posted by
chocococo1
??? cp usually means high cp depending on your trainer level
im level 28 so it would probably be around 2500+
-
Corporal
Originally Posted by
mischa23v
all snorlax candy I'm getting is awesome, saving it for right snorlax
share the love please? how are you finding them and ...some cords please?
ill rep you! lol
-
Member
Originally Posted by
Frankstah
thanks but i didnt get it, cp was ??? and i used 11 ultra balls and 23 supers balls and it always got out ....
Get your dragonites here: "Ken Malloy Harbor Regional Park "
Using Pokemon Go map in this area will give you more then enough Dratinis to have a very strong Dragonite in a few hours.
-
Post Thanks / Like - 1 Thanks
Frankstah (1 members gave Thanks to Gratak- for this useful post)
-
Member
what do you mean where am I getting them, over 30 were posted in this thread alone
-
Member
Originally Posted by
chocococo1
??? cp usually means high cp depending on your trainer level
I'm Pretty sure ??? Means the pokemon has more CP than any pokemon you have :O
-
Post Thanks / Like - 1 Thanks
chocococo1 (1 members gave Thanks to Giraff1 for this useful post)
-
Member
ah https://pokevision.com/ down for maintenance
-
Member
Originally Posted by
Giraff1
I'm Pretty sure ??? Means the pokemon has more CP than any pokemon you have :O
or maybe that. sorry haven't looked it up yet ^^" i was just assuming
-
Post Thanks / Like - 1 Thanks
Giraff1 (1 members gave Thanks to chocococo1 for this useful post)
-
Elite User
Originally Posted by
mischa23v
Finding Pokemons with Pokevision is pain in the ass. You got to find the pokemon, then use google maps to find his cords. I hate it :> They should implement cords and make our life easier
-
Member
Originally Posted by
CruelGiraffe
Finding Pokemons with Pokevision is pain in the ass. You got to find the pokemon, then use google maps to find his cords. I hate it :> They should implement cords and make our life easier
The coords are in the URL. URL always updates the coords of where you clicked for PokeVision.
-
Elite User
Originally Posted by
Unlitmoon
The coords are in the URL. URL always updates the coords of where you clicked for PokeVision.
You serious bro? Am I really so stupid? It's there? aww **** me kek
-
Member
Originally Posted by
CruelGiraffe
Finding Pokemons with Pokevision is pain in the ass. You got to find the pokemon, then use google maps to find his cords. I hate it :> They should implement cords and make our life easier
i think the cords are shown in browser when you click the location on their map
-
Member
Originally Posted by
CruelGiraffe
Finding Pokemons with Pokevision is pain in the ass. You got to find the pokemon, then use google maps to find his cords. I hate it :> They should implement cords and make our life easier
someone posted script that you can use that will remove all other pokemon except what you are looking for and notify you with sound, and when you click on that pokman it will put gps location in link so you can copy and past it here fast, it makes it so much easier when only pokemon you want appear in map and you hear sound when snorlax is there.
-
Member
here is the script you can use, change numbers to include pokemon you want
var wantedPkmn = [3,6,9,26,38,45,59,65,68,71,76,80,83,89,91,94,108,112,113,115,122,130,131,132,137 ,139,141,142,143,148,149];
var search = function() {
var imgs = document.getElementsByTagName("img");
var foundNew = false;
for (var i = 0; i < imgs.length; i++) {
var img = imgs[i];
if (img.src.indexOf('pokemon') > -1) {
var id = img.src.match(/\d+/)[0];
if (wantedPkmn.indexOf(Number(id)) == -1) {
img.parentNode.style.display = 'none';
} else if (!img.notified) {
img.notified = true;
foundNew = true;
}
}
}
if (foundNew)
notify();
}
var notify = function() {
new Audio('https://notificationsounds.com/soundfiles/53fde96fcc4b4ce72d7739202324cd49/file-sounds-882-solemn.mp3').play();
}
document.getElementsByClassName('home-map')[0].onclick = function() {
search();
}