PGBot - 1.001 released! [GUI] [CROSS PLATFORM] [MULTI] [WAYPOINTS] [HUMAN-LIKE] menu

User Tag List

Page 24 of 31 FirstFirst ... 202122232425262728 ... LastLast
Results 346 to 360 of 451
  1. #346
    roelios's Avatar Sergeant
    Reputation
    5
    Join Date
    Apr 2016
    Posts
    48
    Thanks G/R
    11/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    v1.010

    Update Notes

    [General]


    - Fixed catch ignores not working

    - Added the option to render pokemon on the map under "Graphics Options"

    [AntiBan]

    - [Explained Below] Added an option under "Tab Settings" -> "Walking" called "Speed Variation %".

    - Badges will now be equiped

    - Fixed stuck at same encounter

    - Fixed stuck at double pokestop spinning (during softban)





    Explanation of Speed Variation

    In this field, you can enter a value between 0 and 50, and while walking, your speed will be randomly varied by + or - the specified percent.

    What does this mean?

    This means that you will not be walking at a constant pace anymore. Each time we update your position to the servers, your pace will be varied by some random amount between + and - the value that you specified. So you will not be walking at a constant pace between way-points anymore if you use this option.

    So for example if you are walking at a pace of 100 meters per minute (which isnt how we measure speed, but for the sake of example its easy to explain this way), and you enter 50 in the box, one minute you could walk as low as 50 meters, and the next minute you could walk as high as 150 meters.




    ==KNOWN BUGS==

    - Pokestops might not show up on the map sometimes



    Happy botting guys!

    the PGBot team.

    PGBot - 1.001 released! [GUI] [CROSS PLATFORM] [MULTI] [WAYPOINTS] [HUMAN-LIKE]
  2. #347
    Chrisizzle's Avatar Active Member
    Reputation
    18
    Join Date
    Aug 2016
    Posts
    199
    Thanks G/R
    0/17
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Known bug: Transfering Often shows same pokemon 5 times

  3. #348
    Raflesia's Avatar Contributor CoreCoins Purchaser
    Reputation
    81
    Join Date
    Jul 2016
    Posts
    230
    Thanks G/R
    27/74
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Chrisizzle View Post
    Known bug: Transfering Often shows same pokemon 5 times
    Thank you!

  4. Thanks psicrest (1 members gave Thanks to Raflesia for this useful post)
  5. #349
    Chrisizzle's Avatar Active Member
    Reputation
    18
    Join Date
    Aug 2016
    Posts
    199
    Thanks G/R
    0/17
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Raflesia View Post
    Thank you!
    Everything else seems fine
    - show when using lucky egg/incense
    - pause button (pauses run time too)
    - total break time so far
    - item list how it used to be (if 0 it's not there)
    This one may be fixed:
    My graphics got stuck with 'on break for 102 seconds' and didn't move even after it started again

  6. #350
    konami69@'s Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank very muchhhhhh

  7. #351
    psicrest's Avatar Active Member

    Reputation
    23
    Join Date
    Sep 2010
    Posts
    23
    Thanks G/R
    3/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have the latest java but im using the openjdk version.

    I solve the problem on my Ubuntu 16.04 by doing these steps:
    Code:
    1. sudo apt install python-software-properties
    2. sudo add-apt-repository ppa:webupd8team/java
    3. sudo apt update
    ---- Since the bot requires JRE/JDK version 8
    Code:
    4. sudo apt install oracle-java8-installer
    ---- Now that i have multiple version of java to check if the current one i installed is the one set on default--------
    Code:
    5. sudo update-alternatives --config java
    6. I made sure its on: /usr/lib/jvm/java-8-oracle/jre/bin/java and not /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java because for using this version im getting an error of "Error: Could not find or load main class org.pgbot.Application"

    ---- Since my error is not able to find the main class, i though i should set a $JAVA_HOME environment just to make sure.
    Code:
    7. sudo nano /etc/profile
    8. At the bottom of the script i added:
    Code:
    export JAVA_HOME="/usr/lib/jvm/java-8-oracle"
    9. I reloaded the file using this command:
    Code:
    source /etc/profile
    10. check if i have the right $JAVA_HOME environment this should show the path "/usr/lib/jvm/java-8-oracle"
    Code:
    echo $JAVA_HOME
    Now its running without errors. Now i can run this bot on my Linux VPS
    Code:
    java -jar PGBot-Beta-v_1.009.jar
    Last edited by psicrest; 08-18-2016 at 02:25 PM.

  8. Thanks roelios, Raflesia (2 members gave Thanks to psicrest for this useful post)
  9. #352
    roelios's Avatar Sergeant
    Reputation
    5
    Join Date
    Apr 2016
    Posts
    48
    Thanks G/R
    11/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by psicrest View Post
    I have the latest java but im using the openjdk version.

    I solve the problem on my Ubuntu 16.04 by doing these steps:
    Code:
    1. sudo apt install python-software-properties
    2. sudo add-apt-repository ppa:webupd8team/java
    3. sudo apt update
    ---- Since the bot requires JRE/JDK version 8
    Code:
    4. sudo apt install oracle-java8-installer
    ---- Now that i have multiple version of java to check if the current one i installed is the one set on default--------
    Code:
    5. sudo update-alternatives --config java
    6. I made sure its on: /usr/lib/jvm/java-8-oracle/jre/bin/java and not /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java because for using this version im getting an error of "Error: Could not find or load main class org.pgbot.Application"

    ---- Since my error is not able to find the main class, i though i should set a $JAVA_HOME environment just to make sure.
    Code:
    7. sudo nano /etc/profile
    8. At the bottom of the script i added:
    Code:
    export JAVA_HOME="/usr/lib/jvm/java-8-oracle"
    9. I reloaded the file using this command:
    Code:
    source /etc/profile
    10. check if i have the right $JAVA_HOME environment this should show the path "/usr/lib/jvm/java-8-oracle"
    Code:
    echo $JAVA_HOME
    Now its running without errors. Now i can run this bot on my Linux VPS
    Code:
    java -jar PGBot-Beta-v_1.009.jar
    thanks for the small guide/information that solved your problem.

  10. #353
    Raflesia's Avatar Contributor CoreCoins Purchaser
    Reputation
    81
    Join Date
    Jul 2016
    Posts
    230
    Thanks G/R
    27/74
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by psicrest View Post
    I have the latest java but im using the openjdk version.

    I solve the problem on my Ubuntu 16.04 by doing these steps:
    Code:
    1. sudo apt install python-software-properties
    2. sudo add-apt-repository ppa:webupd8team/java
    3. sudo apt update
    ---- Since the bot requires JRE/JDK version 8
    Code:
    4. sudo apt install oracle-java8-installer
    ---- Now that i have multiple version of java to check if the current one i installed is the one set on default--------
    Code:
    5. sudo update-alternatives --config java
    6. I made sure its on: /usr/lib/jvm/java-8-oracle/jre/bin/java and not /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java because for using this version im getting an error of "Error: Could not find or load main class org.pgbot.Application"

    ---- Since my error is not able to find the main class, i though i should set a $JAVA_HOME environment just to make sure.
    Code:
    7. sudo nano /etc/profile
    8. At the bottom of the script i added:
    Code:
    export JAVA_HOME="/usr/lib/jvm/java-8-oracle"
    9. I reloaded the file using this command:
    Code:
    source /etc/profile
    10. check if i have the right $JAVA_HOME environment this should show the path "/usr/lib/jvm/java-8-oracle"
    Code:
    echo $JAVA_HOME
    Now its running without errors. Now i can run this bot on my Linux VPS
    Code:
    java -jar PGBot-Beta-v_1.009.jar
    Thanks alot! This will help alot of our users.

  11. #354
    Raflesia's Avatar Contributor CoreCoins Purchaser
    Reputation
    81
    Join Date
    Jul 2016
    Posts
    230
    Thanks G/R
    27/74
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The membermap has been released: Member Map Release - News and Announcements - PGBot

  12. #355
    thesikaleon's Avatar Sergeant Major Authenticator enabled
    Reputation
    61
    Join Date
    Aug 2015
    Posts
    146
    Thanks G/R
    23/60
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    seems bot miss the most important feature or its just not at the screenshots you have at main post

    Where is the pokemon read/show IV ?
    • Remember to Give Thanks! if you think my post is useful. :shh:

  13. #356
    Cacos21's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    14
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I see that the new update clicks badges for you, does it also click the level up icon that appears when you level up?

  14. #357
    Raflesia's Avatar Contributor CoreCoins Purchaser
    Reputation
    81
    Join Date
    Jul 2016
    Posts
    230
    Thanks G/R
    27/74
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thesikaleon View Post
    seems bot miss the most important feature or its just not at the screenshots you have at main post

    Where is the pokemon read/show IV ?
    It's in the client ^^ new features are coming in so fast that the thread becomes outdated fast. I am working on a new thread and new screenies.

  15. #358
    Raflesia's Avatar Contributor CoreCoins Purchaser
    Reputation
    81
    Join Date
    Jul 2016
    Posts
    230
    Thanks G/R
    27/74
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cacos21 View Post
    I see that the new update clicks badges for you, does it also click the level up icon that appears when you level up?
    Yes it does!

  16. #359
    pogog's Avatar Member
    Reputation
    2
    Join Date
    Aug 2016
    Posts
    12
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this safe ? no ban ?

  17. #360
    CyKoDeLiC's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    32
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hm. My Player is not moving at all. What could be the problem?

Page 24 of 31 FirstFirst ... 202122232425262728 ... LastLast

Similar Threads

  1. [Release] Cross-platform BOT and SNIPER with UI - pgbot.org
    By Raflesia in forum Pokemon GO Hacks|Cheats
    Replies: 120
    Last Post: 02-06-2017, 07:03 PM
  2. [Trading] [Release] Cross-platform BOT/SNIPER with UI - MyGoBuddy.org
    By MyGoBuddy in forum Pokemon GO Buy Sell Trade
    Replies: 3
    Last Post: 10-02-2016, 07:11 PM
  3. Replies: 3
    Last Post: 04-30-2012, 05:34 PM
  4. C# cross platform process opener
    By vitosans in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 05-03-2011, 04:28 PM
  5. [all platform]Real Basic - Cross Platform programming software
    By eti-enne02 in forum World of Warcraft Bots and Programs
    Replies: 4
    Last Post: 06-28-2008, 12:24 PM
All times are GMT -5. The time now is 08:26 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