*FLASHY EYECANDY* 100IV Discord Auto Sniper menu

User Tag List

Page 10 of 24 FirstFirst ... 67891011121314 ... LastLast
Results 136 to 150 of 348
  1. #136
    AdanOer's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    1
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What is the download link of the 1.4v ??

    *FLASHY EYECANDY* 100IV Discord Auto Sniper
  2. #137
    AmberLynn's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    7
    Thanks G/R
    7/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Btw: You can see what (and IF) you got in the PokeSniper2.log in the same directory as the startdiscord...bat file is located

  3. #138
    VadimFedulaev's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    give a link to download the collected version!

  4. #139
    AmberLynn's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    7
    Thanks G/R
    7/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @OP: Is it possible that we replace the pokesniper files in the directory with the one from the current release (1.12)?

  5. #140
    Vpleezzaa's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks man
    Last edited by Vpleezzaa; 09-21-2016 at 01:35 PM.

  6. #141
    RebliNk17's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2016
    Posts
    224
    Thanks G/R
    27/92
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AmberLynn View Post
    Btw: You can see what (and IF) you got in the PokeSniper2.log in the same directory as the startdiscord...bat file is located
    ok, i checked,
    the log is empty. the bot is not launching the pokesniper2.exe

    EDIT:
    i think i found your problem.

    in the file PokemonChatHandler.java
    you write to vbs file and than run it,
    the file is not running well
    you can skip the vbs file writing
    at this file change the snipePokemon() function to:
    Code:
    	public void snipePokemon(PokeLocation pokeLocation) {
    		if (SnipeCache.isCached(pokeLocation))
    			return;
    
    		// Set the snipe.bat file data
    		double latitude = pokeLocation.getLatitude();
    		double longitude = pokeLocation.getLongitude();
    		String pokemonName = pokeLocation.getPokemonType().toString();
    		/*BufferedWriter writer = null;
    		try {
    			writer = new BufferedWriter(
    					new FileWriter(new File(Main.getCurrentDirectory().getAbsolutePath() + "\\snipe.vbs")));
    			writer.write("PokeSniper2.exe " + pokemonName + " " + latitude + " " + longitude + " exit");
    		} catch (IOException e) {
    			e.printStackTrace();
    		} finally {
    			try {
    				writer.close();
    			} catch (IOException e) {
    				e.printStackTrace();
    			}
    		}*/
    
    		// Snipe
    		DPSUtils.log("Sniping " + pokemonName + " @ " + latitude + ", " + longitude + ".");
    		try {
    			final Process process = Runtime.getRuntime()
    					.exec(Main.getCurrentDirectory().getAbsolutePath()+"\\PokeSniper2.exe " + pokemonName + " " + latitude + " " + longitude + " exit");
    			Timer timer = new Timer();
    			timer.schedule(new TimerTask() {
    				@Override
    				public void run() {
    					process.destroyForcibly();
    				}
    			}, 15000);
    		} catch (IOException e) {
    			e.printStackTrace();
    		}
    		SnipeCache.addToCache(pokeLocation);
    	}
    explain:
    i skipped the snipe.vbs writing and put the the snipping code to run in CMD
    i think it should work but i could not run the code, to many libs are needed here. :confused:

    please change it and check if it's working.
    if so - please upload new jar.
    thank you
    Last edited by RebliNk17; 09-21-2016 at 02:26 PM.

  7. #142
    CandyBuns's Avatar Sergeant
    Reputation
    34
    Join Date
    Aug 2016
    Posts
    42
    Thanks G/R
    2/31
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AdanOer View Post
    What is the download link of the 1.4v ??
    The same link, Mirror 1 || Mirror 2

  8. #143
    CandyBuns's Avatar Sergeant
    Reputation
    34
    Join Date
    Aug 2016
    Posts
    42
    Thanks G/R
    2/31
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't run CMD code for a specific reason. I use VBS because it allows me to prevent the PokeSniper2 windows from poping up everytime you snipe. It's annoying as hell when the windows just pops up.

  9. #144
    bepbop's Avatar Member
    Reputation
    2
    Join Date
    Sep 2016
    Posts
    8
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    *FLASHY EYECANDY* 100IV Discord Auto Sniper-screenshot_1-gif
    well it's working, but i check in my bag, i didnt see anything... please fix it and thank so much

  10. #145
    CandyBuns's Avatar Sergeant
    Reputation
    34
    Join Date
    Aug 2016
    Posts
    42
    Thanks G/R
    2/31
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    V1.4 links fixed.

  11. #146
    RebliNk17's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2016
    Posts
    224
    Thanks G/R
    27/92
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CandyBuns View Post
    I don't run CMD code for a specific reason. I use VBS because it allows me to prevent the PokeSniper2 windows from poping up everytime you snipe. It's annoying as hell when the windows just pops up.
    i wrote a code that run cmd in background

    here it is:

    url was deleted

    i can not post it here for some reason. :-\
    Last edited by RebliNk17; 09-21-2016 at 03:17 PM.

  12. #147
    CandyBuns's Avatar Sergeant
    Reputation
    34
    Join Date
    Aug 2016
    Posts
    42
    Thanks G/R
    2/31
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RebliNk17 View Post
    i wrote a code that run cmd in background

    here it is:
    Wed Sep 21 2016 22:50:46 GMT+0300 (Jerusalem - Code - Codeshare

    i can not post it here for some reason. :-\
    What exactly is stdin object?

  13. #148
    RebliNk17's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2016
    Posts
    224
    Thanks G/R
    27/92
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CandyBuns View Post
    What exactly is stdin object?
    sorry you right, i forgot

    Code:
    	private PrintWriter stdin;

  14. #149
    CandyBuns's Avatar Sergeant
    Reputation
    34
    Join Date
    Aug 2016
    Posts
    42
    Thanks G/R
    2/31
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RebliNk17 View Post
    i wrote a code that run cmd in background

    here it is:
    Wed Sep 21 2016 22:50:46 GMT+0300 (Jerusalem - Code - Codeshare

    i can not post it here for some reason. :-\
    Wait let me give your code a shot, you gave me an idea.because by dumping the command into the console via OutputStream I'll actually be able to get the PokeSniper2 feedback in the same console window... Or at least I believe I can, which is what I want.

    I will experiment with this today.

  15. #150
    RebliNk17's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2016
    Posts
    224
    Thanks G/R
    27/92
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CandyBuns View Post
    What exactly is stdin object?
    sorry you right, i forgot

    Code:
    	private PrintWriter std in;

Page 10 of 24 FirstFirst ... 67891011121314 ... 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. [Bot] 100% Auto Sniper IV 100 POKEMON GETCHA!! (Necrobot v30)
    By JJLAI in forum Pokemon GO Hacks|Cheats
    Replies: 6
    Last Post: 11-21-2016, 07:46 AM
  3. [Hack] PokemonGO 100IV CLUB - DISCORD FOR COORDINATES
    By 100ivclub in forum Pokemon GO Hacks|Cheats
    Replies: 3
    Last Post: 09-07-2016, 06:29 PM
  4. [How-To] any one knows how to make a auto sniping bot so it only snipe at 100iv club
    By azazelvobiscum in forum Pokemon GO Hacks|Cheats
    Replies: 0
    Last Post: 08-25-2016, 12:15 PM
  5. Looking for 100IV only discord inv.
    By Am7897 in forum Pokemon GO Chat
    Replies: 13
    Last Post: 08-03-2016, 01:36 PM
All times are GMT -5. The time now is 03:11 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