Pokevision helper menu

User Tag List

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 52
  1. #31
    Sealice's Avatar Master Sergeant
    Reputation
    53
    Join Date
    Apr 2013
    Posts
    121
    Thanks G/R
    22/25
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i love it <3

    Pokevision helper-pantimos-jpg

    Originally Posted by Tobbo88 View Post
    my console just comes up with a shitload of errors (Cannot see anywhere to paste too?)
    on the bottom next to the last code/error

    Pokevision helper
  2. #32
    BasTijs's Avatar Member
    Reputation
    1
    Join Date
    Feb 2014
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome, it would be even cooler if you could hide the pictures of the pokemon we dont want to see. So we can click around NYC and quickly find them.

  3. #33
    Sealice's Avatar Master Sergeant
    Reputation
    53
    Join Date
    Apr 2013
    Posts
    121
    Thanks G/R
    22/25
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BasTijs View Post
    Awesome, it would be even cooler if you could hide the pictures of the pokemon we dont want to see. So we can click around NYC and quickly find them.
    Just read CyaBB's post 1 page ago ..

    Code:
    var wantedPkmn = [3,6,9,24,26,28,31,34,36,38,45,51,55,57,59,62,64,65,68,71,76,80,83,89,91,94,108,101,103,105,112,113,115,122,126,127,128,130,131,132,134,135,136,137,139,141,142,143,144,145,146,148,149,150,151];
    
    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();
    }
    its with sound and works ..

    Pokevision helper-pantimos-jpgPokevision helper-snorlax2-jpgPokevision helper-snorlax-jpg

  4. #34
    mcb91's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    12
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I pasted the code into console. Pressed enter and nothing. Help please

  5. #35
    bronco531's Avatar Member
    Reputation
    1
    Join Date
    Jun 2016
    Posts
    2
    Thanks G/R
    8/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When this worked it changed my life. OMG that was so bad ass!. cant wait for it to work again. i think it stopped because pokevision changed something on that side of the screen today.

  6. #36
    ne0bis's Avatar Active Member
    Reputation
    25
    Join Date
    Jan 2012
    Posts
    119
    Thanks G/R
    11/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bronco531 View Post
    When this worked it changed my life. OMG that was so bad ass!. cant wait for it to work again. i think it stopped because pokevision changed something on that side of the screen today.
    Still working for me try in private navigation on chrome

  7. #37
    mcb91's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    12
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ne0bis View Post
    Still working for me try in private navigation on chrome
    Please advise me mate.

    Attached two screenshots. First one is after pasting code and pressing enter. Second is of exiting the console, still not displayed



  8. #38
    rage1337's Avatar Active Member CoreCoins Purchaser
    Reputation
    32
    Join Date
    Dec 2008
    Posts
    26
    Thanks G/R
    2/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    here you can find a chrome addon to filter pokevision! This is the easiest way atm https://chrome.google.com/webstore/d...fdbpdfmkknadgi

  9. Thanks snahhan, alexchong52 (2 members gave Thanks to rage1337 for this useful post)
  10. #39
    uploader619's Avatar Knight
    Reputation
    65
    Join Date
    Jul 2016
    Posts
    219
    Thanks G/R
    13/56
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where should i paste this should this be included in the script th

    var wantedPkmn = [3,6,9,24,26,28,31,34,36,38,45,51,55,57,59,62,64,65,68,71,76,80,83,89,91,94,108,1 01,103,105,112,113,115,122,126,127,128,130,131,132,134,135,136,137,139,141,142,1 43,144,145,146,148,149,150,151];

    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. #40
    CyaBB's Avatar Member Authenticator enabled
    Reputation
    14
    Join Date
    Apr 2014
    Posts
    150
    Thanks G/R
    21/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Tobbo88 View Post
    my console just comes up with a shitload of errors (Cannot see anywhere to paste too?)
    There is a console bottom of all these errors. Like u are writing in cmd.


    @uploader. Be careful. If you just copy the code frommy quote, there will be some spaces i didnt do myself.

    Just like thread op said.

    CTRL + SHIFT + C and paste it in the bottom bar.
    Last edited by CyaBB; 07-24-2016 at 12:59 PM.

  12. #41
    LiDoR-'s Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    2
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i do it and this working but i dont went this more, what i need do to delete this?

  13. #42
    Pibadi's Avatar Member
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just made Alphabetical list of pokemons for you guys.

    "Abra":true,
    "Aerodactyl":true,
    "Alakazam":true,
    "Arbok":true,
    "Arcanine":true,
    "Articuno":true,
    "Beedrill":true,
    "Bellsprout":true,
    "Blastoise":true,
    "Bulbasaur":true,
    "Butterfree":true,
    "Caterpie":true,
    "Charmander":true,
    "Charmeleon":true,
    "Charizard":true,
    "Chansey":true,
    "Clefairy":true,
    "Clefable":true,
    "Cloyster":true,
    "Cubone":true,
    "Dewgong":true,
    "Diglett":true,
    "Ditto":true,
    "Doduo":true,
    "Dodrio":true,
    "Dragonair":true,
    "Dragonite":true,
    "Dratini":true,
    "Drowzee":true,
    "Dugtrio":true,
    "Eevee":true,
    "Ekans":true,
    "Electabuzz":true,
    "Electrode":true,
    "Exeggcute":true,
    "Exeggutor":true,
    "Farfetch'd":true,
    "Fearow":true,
    "Flareon":true,
    "Gastly":true,
    "Geodude":true,
    "Gengar":true,
    "Gloom":true,
    "Golbat":true,
    "Golem":true,
    "Goldeen":true,
    "Golduck":true,
    "Graveler":true,
    "Growlithe":true,
    "Grimer":true,
    "Gyarados":true,
    "Haunter":true,
    "Hitmonchan":true,
    "Hitmonlee":true,
    "Horsea":true,
    "Hypno":true,
    "Ivysaur":true,
    "Jigglypuff":true,
    "Jolteon":true,
    "Jynx":true,
    "Kabuto":true,
    "Kabutops":true,
    "Kadabra":true,
    "Kakuna":true,
    "Kangaskhan":true,
    "Kingler":true,
    "Koffing":true,
    "Krabby":true,
    "Lapras":true,
    "Lickitung":true,
    "Machamp":true,
    "Machoke":true,
    "Machop":true,
    "Magikarp":true,
    "Magmar":true,
    "Magnemite":true,
    "Magneton":true,
    "Mankey":true,
    "Marowak":true,
    "Meowth":true,
    "Metapod":true,
    "Mew":true, //The dream
    "Mewtwo":true,
    "Moltres":true,
    "Mr. Mime":true,
    "Muk":true,
    "Nidoking":true,
    "Nidoran♀":true,
    "Nidoran♂":true,
    "Nidorina":true,
    "Nidorino":true,
    "Nidoqueen":true,
    "Ninetales":true,
    "Oddish":true,
    "Onix":true,
    "Omanyte":true,
    "Omastar":true,
    "Paras":true,
    "Parasect":true,
    "Persian":true,
    "Pidgey":false, //Hell no
    "Pidgeot":true,
    "Pidgeotto":true,
    "Pikachu":true,
    "Pinsir":true,
    "Porygon":true,
    "Poliwag":true,
    "Poliwhirl":true,
    "Poliwrath":true,
    "Ponyta":true,
    "Psyduck":true,
    "Primeape":true,
    "Raichu":true,
    "Rapidash":true,
    "Raticate":true,
    "Rattata":true,
    "Rhydon":true,
    "Rhyhorn":true,
    "Sandshrew":true,
    "Sandslash":true,
    "Scyther":true,
    "Seadra":true,
    "Seaking":true,
    "Seel":true,
    "Shellder":true,
    "Slowbro":true,
    "Slowpoke":true,
    "Snorlax":true,
    "Spearow":true,
    "Starmie":true,
    "Staryu":true,
    "Squirtle":true,
    "Tangela":true,
    "Tauros":true,
    "Tentacool":true,
    "Tentacruel":true,
    "Vaporeon":true,
    "Venomoth":true,
    "Venonat":true,
    "Venusaur":true,
    "Victreebel":true,
    "Vileplume":true,
    "Voltorb":true,
    "Vulpix":true,
    "Wartortle":true,
    "Weedle":true,
    "Weepinbell":true,
    "Weezing":true,
    "Wigglytuff":true,
    "Zapdos":true,
    "Zubat":false, //Hell no

  14. #43
    alexchong52's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    63
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ****ing awesome chrome addon. Dont use the script guys just get this chrome addon.

  15. #44
    jt89's Avatar Corporal
    Reputation
    10
    Join Date
    Jul 2016
    Posts
    31
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sealice View Post
    Just read CyaBB's post 1 page ago ..

    Code:
    var wantedPkmn = [3,6,9,24,26,28,31,34,36,38,45,51,55,57,59,62,64,65,68,71,76,80,83,89,91,94,108,101,103,105,112,113,115,122,126,127,128,130,131,132,134,135,136,137,139,141,142,143,144,145,146,148,149,150,151];
    
    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();
    }
    its with sound and works ..

    Pokevision helper-pantimos-jpgPokevision helper-snorlax2-jpgPokevision helper-snorlax-jpg
    Sorry for the noob question, but where exactly do I enter this code at? Do I attach it to something inside the javascript? Thanks

  16. #45
    vosszaa's Avatar Member
    Reputation
    4
    Join Date
    Jul 2012
    Posts
    80
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pokevision is down that's why u got script error

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Portal Helper
    By halostorm in forum World of Warcraft Emulator Servers
    Replies: 7
    Last Post: 10-21-2007, 03:55 AM
  2. wow glider to 70 project.. need helpers
    By mrleolito in forum WoW Bot Maps And Profiles
    Replies: 13
    Last Post: 09-01-2007, 02:44 PM
  3. wow glider to 70 project.. need helpers
    By mrleolito in forum World of Warcraft Bots and Programs
    Replies: 0
    Last Post: 08-10-2007, 09:28 PM
  4. [APP]1-60 Helper
    By Dimmy353 in forum World of Warcraft Bots and Programs
    Replies: 18
    Last Post: 07-30-2007, 10:53 AM
  5. lf helpers
    By [Shon3m] in forum Community Chat
    Replies: 1
    Last Post: 05-04-2007, 05:38 PM
All times are GMT -5. The time now is 11:38 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