Real-time Rare Pokemon Hunting menu

User Tag List

Page 8 of 32 FirstFirst ... 456789101112 ... LastLast
Results 106 to 120 of 471
  1. #106
    exileofdragon's Avatar Member
    Reputation
    14
    Join Date
    Feb 2015
    Posts
    101
    Thanks G/R
    8/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i hatched 2 Lapras, my friend she caught one Snorlax and hatch another Snorlax lol

    Real-time Rare Pokemon Hunting
  2. #107
    mischa23v's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    37
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I only get 5km eggs, can never seem to get 10 km eggs

  3. #108
    exileofdragon's Avatar Member
    Reputation
    14
    Join Date
    Feb 2015
    Posts
    101
    Thanks G/R
    8/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i am still looking for Porygon ugh lol, found maybe 2 Grimers. need Muk too

  4. #109
    Schileru's Avatar Active Member
    Reputation
    17
    Join Date
    Jul 2016
    Posts
    32
    Thanks G/R
    4/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I made a small script that I use to look for Pokemon with the PokeVision map:

    Code:
    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();
    }
    Whenever you click on the map, it looks for the Pokemon defined in "wantedPkmn" (you can edit this as you like). When it finds a new one it will play a sound. It also removes all unwanted Pokemon from the map as you click.

    Makes it a lot easier to find what you're looking for. I just click around the Central Park area every now and then to see if there's anything interesting.

    Just copy, open browser console (CTRL + SHIFT + J in Chrome), paste and hit enter.

  5. Thanks morfh, pinn90 (2 members gave Thanks to Schileru for this useful post)
  6. #110
    mischa23v's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    37
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    oh awesome thank you, going to try it

  7. #111
    exileofdragon's Avatar Member
    Reputation
    14
    Join Date
    Feb 2015
    Posts
    101
    Thanks G/R
    8/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    awesome thank you!

  8. #112
    morfh's Avatar Member
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    9
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice, thanks Schileru!

  9. #113
    pedrorm1993's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can you teamviewer with me and do it for me please? i dont understand what u saying to do..

  10. #114
    pedrorm1993's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what programs do i have to use to use this script?

    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();
    }

  11. #115
    mischa23v's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    37
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    open website in chrome, copy code pasted here, then go to pokevision website on chrom, , open browser console (CTRL + SHIFT + J in Chrome), paste and hit enter. now when you search a place it will send you notification

  12. #116
    budsopteam's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pokemon: Lapras
    Time: -
    Location1: -33.856546, 151.203385
    Location2: -33.861183, 151.211032

  13. #117
    mischa23v's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    37
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks mate

  14. #118
    pedrorm1993's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mischa23v View Post
    open website in chrome, copy code pasted here, then go to pokevision website on chrom, , open browser console (ctrl + shift + j in chrome), paste and hit enter. Now when you search a place it will send you notification
    it shows me this error

    what am i doing wrong?

    Real-time Rare Pokemon Hunting-123456-jpg

  15. #119
    mischa23v's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    37
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmm not sure

  16. #120
    fokeiro's Avatar (⌐■_■)–︻╦╤─ – – –

    Authenticator enabled
    Reputation
    808
    Join Date
    Jul 2012
    Posts
    756
    Thanks G/R
    89/727
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Aerodactyl -33.857682149489044,151.2031865749941 9 mins

Page 8 of 32 FirstFirst ... 456789101112 ... LastLast

Similar Threads

  1. [DISCORD CHAT] Real-time Rare Pokemon Hunting WITH WORKING AUTO-INVITE
    By RedRussian in forum Pokemon GO Hacks|Cheats
    Replies: 12
    Last Post: 06-12-2017, 10:34 PM
  2. Replies: 37
    Last Post: 10-11-2016, 04:14 PM
  3. [Bot] Pokemon GO Rare Pokemon Hunting Farming Bot
    By MonsterMMORPG in forum Pokemon GO Hacks|Cheats
    Replies: 202
    Last Post: 08-05-2016, 06:30 AM
  4. [Selling] \(◕‿◕)/ ◣♡ Pokemon GO Services ♡◥ || Rare Pokemon Hunting, Farming & more
    By Starfishies in forum Pokemon GO Buy Sell Trade
    Replies: 1
    Last Post: 07-30-2016, 06:59 PM
  5. [Selling] Pokemon Go candy farm/hatch egg/rare pokemon hunt and more
    By fallendown2095 in forum Pokemon GO Buy Sell Trade
    Replies: 0
    Last Post: 07-23-2016, 05:08 AM
All times are GMT -5. The time now is 07:59 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