Simplest Pixel Bot menu

Shout-Out

User Tag List

Page 5 of 6 FirstFirst 123456 LastLast
Results 61 to 75 of 81
  1. #61
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1446
    Join Date
    Apr 2006
    Posts
    4,007
    Thanks G/R
    296/590
    Trade Feedback
    1 (100%)
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Originally Posted by comic-1337 View Post
    I guess it's because you are in a while loop, try using a Timer
    Actually, I'd highly recommend setting up a keyboard listener event. Setting up a timer or doing a while loop is going to miss keyboard events.

    Simplest Pixel Bot
  2. #62
    ITexpert's Avatar Member
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    53
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Sigh, I just suck at coding. I found the jnativehook files but now I don't even know how to import them to the project so that the java file will know they exist. I've tried googling for answers but I can't understand most of what they're saying.

  3. #63
    drrrr56's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    I did what you said and I just get 16 different errors lol

  4. #64
    qqzzxxcc's Avatar Active Member
    Reputation
    28
    Join Date
    Jun 2012
    Posts
    72
    Thanks G/R
    43/18
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Originally Posted by Sychotix View Post
    Actually, I'd highly recommend setting up a keyboard listener event. Setting up a timer or doing a while loop is going to miss keyboard events.
    My code didn't had listener for keyboard? I thought it has it.

  5. #65
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1446
    Join Date
    Apr 2006
    Posts
    4,007
    Thanks G/R
    296/590
    Trade Feedback
    1 (100%)
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Originally Posted by drrrr56 View Post
    I did what you said and I just get 16 different errors lol
    Those errors probably already existed already. Welcome to programming where you correct one bug and 20 new ones appear.

    @ITexpert, we aren't going to spoon feed you. Look at what the code is before you even try to use it. It isn't even a valid program because it is just a snippet of the code.

  6. #66
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1446
    Join Date
    Apr 2006
    Posts
    4,007
    Thanks G/R
    296/590
    Trade Feedback
    1 (100%)
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Originally Posted by qqzzxxcc View Post
    My code didn't had listener for keyboard? I thought it has it.
    I just reviewed your code. Looks like you are... but you are doing it wrong. You are adding a hook during every loop iteration (or maybe now in a timer). You only need to add a hook once. Also, add a Thread.sleep to your infinite while loop. (or I guess if you now have it in a timer, this may be taken care of)

  7. Thanks qqzzxxcc (1 members gave Thanks to Sychotix for this useful post)
  8. #67
    comic-1337's Avatar Banned
    Reputation
    18
    Join Date
    Jul 2016
    Posts
    97
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    Actually, I'd highly recommend setting up a keyboard listener event. Setting up a timer or doing a while loop is going to miss keyboard events.
    I mean setting up a timer to call for the moveMouse function ;P there's no need for a while loop to do that

  9. #68
    qqzzxxcc's Avatar Active Member
    Reputation
    28
    Join Date
    Jun 2012
    Posts
    72
    Thanks G/R
    43/18
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Originally Posted by Sychotix View Post
    I just reviewed your code. Looks like you are... but you are doing it wrong. You are adding a hook during every loop iteration (or maybe now in a timer). You only need to add a hook once. Also, add a Thread.sleep to your infinite while loop. (or I guess if you now have it in a timer, this may be taken care of)
    Thanks for advice, gave me even less cpu\ram load and more stability!

    This is what I've got
    Code:
    ...
    
    test4 listen = new test4();
            GlobalScreen.addNativeKeyListener(listen);
            timer.schedule(new TimerTask() {
              @Override
              public void run() {
                
                if(hold){ 
                  try{
                    moveMouse(analysis(ss())[0],analysis(ss())[1]);
                  } catch (Exception  ex) {
                    System.exit(1);
                    }
                }
              }
            }, 8,8);
    
    ...

  10. #69
    comic-1337's Avatar Banned
    Reputation
    18
    Join Date
    Jul 2016
    Posts
    97
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm glad people are learning how to program
    Last edited by comic-1337; 07-30-2016 at 09:58 AM.

  11. #70
    Cosmos4141's Avatar Private
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Originally Posted by comic-1337 View Post
    Removed cause it's dangerous out there. Look what happened to Triggerbot-js
    DAMN! There was a pixel bot here? Seems I'm late for the party. Anyone know any other forums that work on developing trigger bots?

  12. #71
    davidvu98's Avatar Member
    Reputation
    1
    Join Date
    Jun 2016
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    https://youtu.be/m9HBhfWgXjk
    Just a quick demo I made while ago in c++. have improved it a lot by now (Smooth, stability, perf boost,...)
    Last edited by davidvu98; 07-30-2016 at 02:54 PM.

  13. #72
    drrrr56's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    check pms.

  14. #73
    comic-1337's Avatar Banned
    Reputation
    18
    Join Date
    Jul 2016
    Posts
    97
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by davidvu98 View Post
    https://youtu.be/m9HBhfWgXjk
    Just a quick demo I made while ago in c++. have improved it a lot by now (Smooth, stability, perf boost,...)
    Good job right there!

  15. #74
    comic-1337's Avatar Banned
    Reputation
    18
    Join Date
    Jul 2016
    Posts
    97
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cosmos4141 View Post
    DAMN! There was a pixel bot here? Seems I'm late for the party. Anyone know any other forums that work on developing trigger bots?
    Yes there is one but people like Raveth love to sabotage people blame him, he pmed me shits lel. Anyway you can go for riceking's one

  16. #75
    Kuroro666's Avatar Member
    CoreCoins Purchaser
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    32
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Status: Trade
    Originally Posted by comic-1337 View Post
    Yes there is one but people like Raveth love to sabotage people blame him, he pmed me shits lel. Anyway you can go for riceking's one
    Teach me man!!!!

Page 5 of 6 FirstFirst 123456 LastLast

All times are GMT -5. The time now is 12:22 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