PokeSniper2 - AutoSniping only SPECIFIC pokemon menu

Shout-Out

User Tag List

Page 1 of 6 12345 ... LastLast
Results 1 to 15 of 87
  1. #1
    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)

    PokeSniper2 - AutoSniping only SPECIFIC pokemon

    EDIT: Maclone just added v1.7 of PokeSnipe2 which makes this script obsolete.

    Hey fellas,

    as many of you I very much admire what mr maclone coded for us. However, I was missing an auto snipe / afk snipe feature in his release of PokeSniper2. There is Auto snipe, but it will snipe ALL the pokemons available on PokeSnipers.com. This snipes only those pokemon which you specify.

    You will need AutoIt for this. If you don't have it, download it. IMPORTANT: save the script to the same folder as PokeSniper2!

    Edit these settings and just run the script
    Global $PathToSnipe - path to PokeSniper2.exe
    Global $Pokemon2Snipe - what pokemons to snipe

    Happy sniping Just caught my 6th Dragonite today while watching a movie :-D

    Code below, or download the AU3 file HERE

    Code:
    #include <INet.au3>
    #include <Array.au3>
    
    HotKeySet("{F8}", "Shut")
    HotKeySet("{F5}", "Pause")
    
    Global $Paused
    Global $CaughtPokemonIDs = ""
    Global $JSONerror = 0
    
    
    
    ; *************************************************************************************************************************************************************
    ; *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS ***
    ; *************************************************************************************************************************************************************
    
    Global $PathToSnipe = "F:\Pokemon GO\Snipe\30.7.2016\PokeSniper2.exe" ; REPLACE WITH THE PATH TO PokeSniper2.exe
    Global $Pokemon2Snipe = "Snorlax,Dragonite,Chansey,Mew,Mewtwo,Dragonair,Lapras" ; POKEMON NAMES TO SNIPE SEPARATED WITH A COMMA (no spaces)
    
    ; *************************************************************************************************************************************************************
    ; *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS *** EDIT THIS ***
    ; *************************************************************************************************************************************************************
    
    
    
    $Array = StringSplit($Pokemon2Snipe, ",")
    $aSize = UBound($Array)
    
    While 1
        $Source = _INetGetSource("http://pokesnipers.com/api/v1/pokemon.json")
    	If @error Then
    		$JSONerror = $JSONerror + 1
    		If $JSONerror > 10 Then
    			MsgBox(16, "Error", "Couldn't grab data from 'pokemon.json'. Try again later" & @CRLF & "Exiting script.")
    			Exit
    		EndIf
    	Else
    		$JSONerror = 0
    		;MsgBox(1, "", $Source)
    		For $i = 1 to $aSize - 1
    			$PokemonSearch = StringInStr($Source, $Array[$i])
    			If $PokemonSearch > 0 Then
    				$PokemonOccurenceSearch = StringReplace($Source, $Array[$i], $Array[$i])
    				$PokemonOccurence = @extended
    				For $j = 1 to $PokemonOccurence
    					$PokemonSearch = StringInStr($Source, $Array[$i], 0, $j)
    					$IDPosStart = StringInStr($Source, '"id":', 0, -1, $PokemonSearch)
    					$IDPosEnd = StringInStr($Source, ',"', 0, 1, $IDPosStart)
    					$ID = StringMid($Source, $IDPosStart + 5, $IDPosEnd - $IDPosStart - 5)
    
    					If StringInStr($CaughtPokemonIDs, $ID) = 0 Then
    						$CoordsStart = StringInStr($Source, '"coords":"', 0, 1, $PokemonSearch)
    						$CoordsEnd = StringInStr($Source, '","', 0, 1, $CoordsStart + 10)
    						$CoordsRaw = StringMid($Source, $CoordsStart + 10, $CoordsEnd - $CoordsStart - 10)
    						$Coords = StringSplit($CoordsRaw, ',')
    						;MsgBox(1, "", "Found it / ID: " & $ID & " / Coords: " & $Coords[1] & " / " & $Coords[2])
    						ShellExecuteWait($PathToSnipe, '"' & $Array[$i] & '" "' & $Coords[1] & '" "' & $Coords[2] & '"')
    						If @error Then
    							MsgBox(16, "Error", "Could not run PokeSniper2.exe" & @CRLF & "Make sure ' PathToSnipe ' variable is correctly set." & @CRLF & "Existing script")
    							Exit
    						EndIf
    						$CaughtPokemonIDs = $CaughtPokemonIDs & $ID & ","
    						;MsgBox(1, "", $CaughtPokemonIDs)
    					;Else
    						;MsgBox(1, "", "Duplicate ID: " & $ID & " / " & $CaughtPokemonIDs)
    					EndIf
    				Next
    			;Else
    				;MsgBox(1, "", "nothing to snipe")
    			EndIf
    		Next
    	EndIf
    	Sleep(15000)
    WEnd
    
    Func Shut()
    	Exit
    EndFunc
    
    Func Pause() ; PAUSE RELATED FUNCTION
    	$Paused = NOT $Paused
    	While $Paused
    		Sleep(100)
    	WEnd
    EndFunc
    Last edited by Seminko; 07-30-2016 at 12:09 PM.
    Don't just say thanks, click thanks!

    PokeSniper2 - AutoSniping only SPECIFIC pokemon
  2. #2
    stillerchiller's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    11/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice Release.

    But you do realise that PokeSniper2 1.6 is in fact having a "Auto Snipe" function using pokesnipers, right? ^^

  3. #3
    teamforprime's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How to do it?>

  4. #4
    nero.'s Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    66
    Thanks G/R
    11/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    SO what does this do exactly? Use co ords from discord chats to auto snipe certain pokemon?

  5. #5
    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)
    Originally Posted by stillerchiller View Post
    Nice Release.

    But you do realise that PokeSniper2 1.6 is in fact having a "Auto Snipe" function using pokesnipers, right? ^^
    It snipes all the pokemon from PokeSnipers. This snipes only what you tell it to.
    Don't just say thanks, click thanks!

  6. #6
    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)
    Originally Posted by nero. View Post
    SO what does this do exactly? Use co ords from discord chats to auto snipe certain pokemon?
    PokeSnipers2 from maclone snipes pokemons from PokeSnipers.com. This lets you specify what pokemons to snipe.
    Don't just say thanks, click thanks!

  7. Thanks nero. (1 members gave Thanks to Seminko for this useful post)
  8. #7
    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)
    Good job Seminko this is really useful which maclone should had included in his release

  9. #8
    nero.'s Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    66
    Thanks G/R
    11/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do I need to have the sniper open already before I run the script?

  10. #9
    jomykzzf1's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    11/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Seminko View Post
    PokeSnipers2 from maclone snipes pokemons from PokeSnipers.com. This lets you specify what pokemons to snipe.
    can you explain me how do I edit it? which tool I need to use? notepad++?

  11. #10
    nero.'s Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    66
    Thanks G/R
    11/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When I run the script it just opens the sniper to the press Y bit and then nothing happens.

    Originally Posted by jomykzzf1 View Post
    can you explain me how do I edit it? which tool I need to use? notepad++?
    Read the OP. You need AutoIt

  12. #11
    ronshohan's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    8
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow !! I don't have words to describe just how awesome this work is. Thank you so very much. You sir ROCK !!!

  13. #12
    jamsya's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works well. Thx!

  14. #13
    jomykzzf1's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    11/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When I run the script with AutoIt, it minimizes and I can't see the progress... Is that normal?

  15. #14
    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)
    Originally Posted by jomykzzf1 View Post
    When I run the script with AutoIt, it minimizes and I can't see the progress... Is that normal?
    Yes, once one of the pokemons you cpecified appears it will load the cmd prompt automaticallz. You can find the script running in the tray. If you want to kill it with a hotkey, press F8
    Don't just say thanks, click thanks!

  16. Thanks jomykzzf1 (1 members gave Thanks to Seminko for this useful post)
  17. #15
    jomykzzf1's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    11/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Seminko View Post
    Yes, once one of the pokemons you cpecified appears it will load the cmd prompt automaticallz. You can find the script running in the tray. If you want to kill it with a hotkey, press F8
    Oh ok thanks alot

Page 1 of 6 12345 ... LastLast

Similar Threads

  1. I only see pokemon spawning at lures, no wilds?? Using Nox
    By sacredcow4 in forum Pokemon GO Chat
    Replies: 2
    Last Post: 08-06-2016, 04:01 PM
  2. Find specific pokemon
    By Distiny in forum Pokemon GO Chat
    Replies: 1
    Last Post: 07-30-2016, 02:37 AM
  3. [Selling] Boosting services so cheap! Specific pokemon also have a couple lvl 30s
    By tonz73 in forum Pokemon GO Buy Sell Trade
    Replies: 0
    Last Post: 07-29-2016, 11:29 PM
  4. Need bot to farm specific pokemons like dratini
    By jackdahou in forum Pokemon GO Hacks|Cheats
    Replies: 4
    Last Post: 07-26-2016, 11:12 PM
  5. Replies: 3
    Last Post: 07-26-2016, 07:39 PM
All times are GMT -5. The time now is 12:40 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