PokeSniper2 - Pokemon Sniper - Catch any Pokemon no matter where you are menu

User Tag List

Page 55 of 243 FirstFirst ... 5515253545556575859105155 ... LastLast
Results 811 to 825 of 3631
  1. #811
    Idontknowwhoami's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    2
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mixarn89 View Post
    Guys I'm new to Pokesnipe, just downloaded it. My goal is to find a good (98+) dragonite/dratini. How exactly do I use Pokesnipe the safest way? Okay I have filled in my google account info, now where do I put the coordinates that people tips? And what "safe" cords should I have, also where should I put those and why? It says Amsterdam central station by default..

    Sorry I am a bit confused, I hope someone can help me
    You need to set your current location in to the file(xml), to the field "default location" (where u are now).. after u start the bot, and it will ask for pokemon name, then the coordinates where you found the poke.

    PokeSniper2 - Pokemon Sniper - Catch any Pokemon no matter where you are
  2. Thanks alex7212 (1 members gave Thanks to Idontknowwhoami for this useful post)
  3. #812
    vlasich's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    15/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Don't work with "Farfetch'd" pokemon

  4. #813
    gloomyr666's Avatar Member
    Reputation
    5
    Join Date
    Oct 2013
    Posts
    52
    Thanks G/R
    5/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    IDK but maybe it possible to pin to 1 message - QuickSpin anti-ban will help with "sofbann all time" when using pokesniping

  5. #814
    p0k3m0n's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vlasich View Post
    Don't work with "Farfetch'd" pokemon
    Use Farfetchd as the Pokemon name

  6. Thanks vlasich (1 members gave Thanks to p0k3m0n for this useful post)
  7. #815
    p0g's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    17
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by acnl View Post
    I have added filters to my AutoHotKey script. Enjoy and don't forget to +rep/thank if you find this useful.

    Code:
    ; RUN SCRIPT AS ADMINISTRATOR (Right-click, Run As Administrator)
    ; Change input keyboard language to United States International.
    
    ; Config
    workingdir = "C:\pokesniper\"    ; Working directory
    sniper     = "PokeSniper2.exe"                      ; Location where sniper is stored
    usexml     = Y                                      ; Set to 'Y' or 'N'
    
    usecapturelist = Y                                  ; Set to 'Y' or 'N'
    useignorelist  = Y                                  ; Set to 'Y' or 'N'
    
    capturelist = Dragonite,Jolteon,Flareon,Vaporeon,Lapras
    ignorelist  = Wigglytuff,Dewgong,Porygon
    
    ; OPTIONAL - BEGIN
    ; If you do not use the 'user.xml' file, enter your data below. If you set usexml = Y you do not have to edit the data below.
    ; To avoid a softban, your current location is required.
    latitude    = 51.98236919602906
    longitude   = 5.90440034866333
    altitude    = 10        ; Default is 10
    loginmethod = 1         ; Set to 1 for Google, set to 2 for PTC
    username    = USERNAME  ; email adres for Google, or username for PTC
    password    = PASSWORD  ; password for Google, or password for PTC
    ; OPTIONAL - END
    
    Loop
    {
        ; Get the Pokemon JSON information
        succes = false
        Loop {
            urldownloadtofile , http://pokesnipers.com/api/v1/pokemon.json , c:\pokemon.json
            FileRead , page , c:\pokemon.json
    
            ; Test if page is not timed out, not found, or gives another error
            IfNotInString, page, error
                succes = true
        } Until succes == "true"
    
        ; Retrieve name, latitude, longitude, and start sniper for each Pokemon
        StringReplace, page, page, "}`, , ¢, All
        Loop , parse , page , ¢
        {
            line := A_LoopField
            linesplit := StrSplit(line , ",")
    
            ; Get name
            name := linesplit[2]
            StringTrimLeft, name , name , 8
            StringTrimRight, name , name , 1
        
            ; Get latitude coordinate
            lat := linesplit[3]
            StringTrimLeft, lat , lat , 10
    
            ; Add longitude coordinate
            long := linesplit[4]
            StringTrimRight, long , long , 1
    
            ; Concatenate latitude and longitude
            coords = %lat%,%long%
    
            if (%usecapturelist% == Y)
            {
                if name not in %capturelist%
                {
                goto continue_outer
                }
            }
            if (%useignorelist% == Y)
            {
                if name in %ignorelist%
                {
                goto continue_outer
                }
            }
            
            ;Run %comspec% /c cd "%workingdir%" && "%sniper%"
            ;Run, %comspec% /k cd "%workingdir%", , max 
            Run, cmd.exe, , max
            WinWaitActive, cmd.exe,,1
            SendInput {Raw} cd %workingdir%
            SendInput {Enter}
            SendInput {Raw} %workingdir%\%sniper%
            SendInput {Enter}
    
            if (%usexml% == Y)
            {
                SendInput %usexml%{Enter}%name%{Enter}%coords%{Enter}
            }
            else
            {
                SendInput %usexml%
                SendInput %loginmethod%
                SendInput %latitude%{Enter}%longitude%{Enter}%altitude%{Enter}
                SendInput {Raw} %username%
                SendInput {Enter}
                SendInput {Raw}  %password%
                SendInput {Enter}{Enter}
                SendInput %name%{Enter}%coords%{Enter}
            }
            sleep, 10000 ; wait several seconds (1000 = 1 second) to finish catching Pokemon
            SendInput xxexit{Enter}
            continue_outer:
        }
    sleep, 60000 ; sleep some seconds (1000 = 1 second) and snipe again!
    }


    dont know how i have use it , pls tell me

  8. Thanks Ayy_lmao (1 members gave Thanks to p0g for this useful post)
  9. #816
    acnl's Avatar Corporal
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    19
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by p0g View Post
    dont know how i have use it , pls tell me
    It is a script for a program called AutoHotKey.

  10. #817
    ilovedigimon's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    17
    Thanks G/R
    8/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    go for Farfetchd (without ')

  11. #818
    remake999's Avatar Member
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    35
    Thanks G/R
    16/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it would be much better if we write pokemon name and coordinates in single line

  12. #819
    p0g's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    17
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    guys i have all information in user.xml and when i open poke sniper all the times i must write settings again , this is message from poke sniper "Could not load settings. user.xml either missing or malformed." pls help



    <?xml version="1.0" encoding="utf-16"?>
    <UserSettingsXml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <AuthType>Google</AuthType> <!-- Google/Ptc -->
    <DefaultLatitude>40,767445685</DefaultLatitude> <!-- Default Amsterdam Central Station -->
    <DefaultLongitude>-73,970697559</DefaultLongitude> <!-- Default Amsterdam Central Station -->
    <DefaultAltitude>10</DefaultAltitude>
    <PtcPassword>pw</PtcPassword>
    <PtcUsername>username</PtcUsername>
    <GoogleUsername>my mail </GoogleUsername>
    <GooglePassword>my password</GooglePassword>
    </UserSettingsXml>

  13. #820
    gloomyr666's Avatar Member
    Reputation
    5
    Join Date
    Oct 2013
    Posts
    52
    Thanks G/R
    5/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by p0g View Post
    guys i have all information in user.xml and when i open poke sniper all the times i must write settings again , this is message from poke sniper "Could not load settings. user.xml either missing or malformed." pls help



    <?xml version="1.0" encoding="utf-16"?>
    <UserSettingsXml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <AuthType>Google</AuthType> <!-- Google/Ptc -->
    <DefaultLatitude>40,767445685</DefaultLatitude> <!-- Default Amsterdam Central Station -->
    <DefaultLongitude>-73,970697559</DefaultLongitude> <!-- Default Amsterdam Central Station -->
    <DefaultAltitude>10</DefaultAltitude>
    <PtcPassword>pw</PtcPassword>
    <PtcUsername>username</PtcUsername>
    <GoogleUsername>my mail </GoogleUsername>
    <GooglePassword>my password</GooglePassword>
    </UserSettingsXml>
    maybe try this "35.6657052905" . i mean - use "." not ","

  14. Thanks p0g (1 members gave Thanks to gloomyr666 for this useful post)
  15. #821
    Foxs's Avatar Sergeant
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    48
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just wonder... can i running my bot while sniping? lol.

  16. #822
    Ayy_lmao's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This could be made a lot better if there was some way to specify which pokemon we wanted to snipe using the autosnipe function, and by allowing use of great/ ultra balls for more efficient catches.

    Also, the snipebot sometimes fails to connect to pokesnipers.com, (no response) which prompts it to exit, rather than attempting a reconnect.

    But as it is now, it's chugging along side by side with Necrobot with only the odd short softban when necrobot reaches a pokestop while pokesniper is in the process of catching a pokemon. A few tweaks to necrobot's config.json and I have it collecting pokeballs and xp while filtering the new snipes by IVs.

    Thanks for the great work done so far, I'm happy I discovered a proper community of bot-running money-making fellows.

  17. #823
    remake999's Avatar Member
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    35
    Thanks G/R
    16/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is snipe bot connect to pokesnipers.com automatically?

  18. #824
    senseirain's Avatar Member
    Reputation
    2
    Join Date
    Jun 2016
    Posts
    142
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does it only use regular pokeball?
    [8:39:58 PM] Got into the fight without any Pokeballs.
    Out of Pokeballs. Get some more.

  19. #825
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Don't just say thanks, click thanks!

  20. Thanks emietleora (1 members gave Thanks to Seminko for this useful post)

Similar Threads

  1. [How-To] Teleport Catching any Pokemon and 100% not get banned!
    By zm188480765 in forum Pokemon GO Hacks|Cheats
    Replies: 9
    Last Post: 03-25-2017, 10:43 PM
  2. [Selling] Pokemon CATCHING Service - I will catch ANY Pokemon for YOUR account for you.
    By Phaceee in forum Pokemon GO Buy Sell Trade
    Replies: 0
    Last Post: 07-27-2016, 07:56 AM
  3. [Selling] Pokemon catching service - i will catch any pokemon on your account for you
    By Phaceee in forum Pokemon GO Buy Sell Trade
    Replies: 0
    Last Post: 07-26-2016, 07:49 PM
  4. [warlock] Cast any spell, regardless of if you are facing your target.
    By MelonFarmer in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 09-10-2012, 12:12 PM
  5. MMOwned's Minicity! (You can help! No matter who you are!)
    By Remahlól in forum Community Chat
    Replies: 16
    Last Post: 01-06-2008, 09:50 AM
All times are GMT -5. The time now is 05:39 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