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

Shout-Out

User Tag List

Page 53 of 243 FirstFirst ... 3495051525354555657103153 ... LastLast
Results 781 to 795 of 3631
  1. #781
    12dollar's Avatar Member
    Reputation
    2
    Join Date
    Nov 2011
    Posts
    16
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The autosniping functionality works really well. I'd just like to make two requests:

    1.) maybe you can offer a possibility to define which pokemons should be autosniped or transferred
    2.) make the code available.

    for the second request I'm asking because I'm a developer myself and I would love to contribute to your program

    PokeSniper2 - Pokemon Sniper - Catch any Pokemon no matter where you are
  2. Thanks Sjimmie (1 members gave Thanks to 12dollar for this useful post)
  3. #782
    Sjimmie's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    First of all great job!

    But i got one little question could je remove the press a key when exiting? So we / i can intergrate it with a different bot?
    I adjusted your quickspin, but it seems you encrypted pokesniper2.

    Thanks for all your work!

  4. #783
    akopertoni73's Avatar Corporal
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    28
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now supports wildcard * or Missingno as Pokemon to search,<< where can i find this ?

  5. #784
    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)
    Cant understand this thing....
    Well,i tried alot of times - and always it softbans me.
    I put my real location in settings; tried putting my bot location in setting - anyway - after i enter Sniper exe, and try to catch somebody - it will just flee and ill have softban...why??=(
    ___
    PS what is AutoSniping?) i mean...its not auto,right? we should go to site,find coords for pokemon,then enter pokemon name and coords...manualy^^

  6. #785
    yusufkurnia39's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    always getting softban even im not playing it 1-2 hours

  7. #786
    nomikk's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    50
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gloomyr666 View Post
    Cant understand this thing....
    Well,i tried alot of times - and always it softbans me.
    I put my real location in settings; tried putting my bot location in setting - anyway - after i enter Sniper exe, and try to catch somebody - it will just flee and ill have softban...why??=(
    ___
    PS what is AutoSniping?) i mean...its not auto,right? we should go to site,find coords for pokemon,then enter pokemon name and coords...manualy^^
    i use autosnip and not get a softbanned, auto mean it will catch any pokemon that appears on pokesniper.com for you. Not a auto is also a ....auto that only catch a pokemon u want (type in manualy)

  8. #787
    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)
    For people using the old version without autosniping, you can use the following AutoHotKey script to implement it:

    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'
    
    ; 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 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%
    
            ;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}
        }
    sleep, 60000 ; sleep some seconds (1000 = 1 second) and snipe again!
    }
    Originally Posted by 12dollar View Post
    1.) maybe you can offer a possibility to define which pokemons should be autosniped or transferred
    That's actually a good suggestion.


    Feel free to use it and +rep/thank me if you think this is useful!
    Last edited by acnl; 07-30-2016 at 05:34 AM.

  9. Thanks kinjitsu, gertpaju (2 members gave Thanks to acnl for this useful post)
  10. #788
    endeffekt's Avatar Member
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nomikk View Post
    i use autosnip and not get a softbanned, auto mean it will catch any pokemon that appears on pokesniper.com for you. Not a auto is also a ....auto that only catch a pokemon u want (type in manualy)
    How do we use this bot? I am always softbanned while using this?

  11. #789
    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 endeffekt View Post
    How do we use this bot? I am always softbanned while using this?
    Be sure to set the correct location in user.xml.

  12. #790
    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)
    oh,i see,autosnipe is exe too cool)
    but still...bot works fine,but this pokesnipe - always gives me sftbans...
    PokeSniper2 - Pokemon Sniper - Catch any Pokemon no matter where you are-22f942094e-jpg

  13. #791
    nomikk's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    50
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by endeffekt View Post
    How do we use this bot? I am always softbanned while using this?
    maybe u just unlucky at catching pokemon, try go to pokemon in your phone/emulator, delete all normal balls, this will force the autosnipe using greatball to catch, see if u get something.
    I once got 10 times "catchFlee" in a row but it turns out not a softbanned, just unlucky.....with magikarp

  14. #792
    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)
    what is "correct"? i setted my home location o.O
    then(it didnt help) i changed to bot location(where i often botting) - zero result too..(
    and its 100% softban(cause if i launch bot it will says that im banned for a couple mins)

  15. #793
    nomikk's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    50
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gloomyr666 View Post
    oh,i see,autosnipe is exe too cool)
    but still...bot works fine,but this pokesnipe - always gives me sftbans...
    PokeSniper2 - Pokemon Sniper - Catch any Pokemon no matter where you are-22f942094e-jpg
    I think ninatic changes the chance to catchsuccess a little more harder, and those are rare pokemons, i mean maybe u just unlucky

  16. #794
    Richnl's Avatar Private
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great work thanks!

  17. #795
    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)
    like i told
    "what is "correct"? i setted my home location o.O
    then(it didnt help) i changed to bot location(where i often botting) - zero result too..(
    and its 100% softban(cause if i launch bot it will says that im banned for a couple mins)"

    meh...so sad ;(

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:57 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