Jump to content

Explv

Scripter II
  • Posts

    2314
  • Joined

  • Last visited

  • Days Won

    6
  • Feedback

    100%

Everything posted by Explv

  1. Do not do this. Are there spaces in the usernames?
  2. You can get all the free script IDs from the add button URLs on the script page. You can't do this however for premium or VIP scripts. And no, there isn't anything in the API. Generally people get the IDs from the log when running the script, or from the script writer.
  3. Are you making a new event each time you want to walk? If not, then you should.
  4. Still needs fixing, been very busy lately sorry
  5. Explv

    Explv's Walker

    Why can't you run it? The buttons should still work? The one on the left is start, and on the right is stop.
  6. If you are trying to listen for user clicks, then maybe try adding the listener to the canvas instead: getBot().getCanvas().addMouseListener(new MouseAdapter() { @Override public void mouseClicked(MouseEvent e) { super.mouseClicked(e); // whatever } }); Note: Sometimes mouseClicked can be unresponsive, and you may want to consider using mousePressed instead.
  7. I don't see how any of that was relevant to OP's original question, and his question was already answered correctly 3 days ago.
  8. This section is for help with *writing* scripts.
  9. She looks like a dude
  10. Workdays probably on my computer about 12 / 13 hours (software eng) Exercise about 1.5 hours a day
  11. In onStart, create a custom GUI or just use a dialogue to get the radius value from the user. Then get the Area for that radius using: myPlayer().getArea(radius) And store it globally.
  12. I don't think someone who made a thread 10 days ago needs your pc. Spamming for 100 post count like that just makes you look suspicious xD
  13. @tumblez @Individuality Ban? :doge:
  14. I was actually testing out silent aim in that clip
  15. @Zappster is just salty that he's trash. Dude sits there recording me, breathing heavily into his mic, waiting for the brief moment when I fuck up so he can get some likes in spam section. Maybe I should record you trying to program. Git gud u fucking scrub
  16. No, it will only include what you tell it to include. If you make each of your scripts it's own module, then you can include each individual module in a different .jar Notice how I have one .jar for my AIO script and another for my walking script.
  17. Here is how to do it: 1. Open module settings (F4), or right click on a module and select open module settings 2. Navigate to the artifacts tab on the left 3. Click the green + symbol and select JAR -> Empty 4. Move the compiled output of the module you want to put into the .jar from the available elements (on the right) into the .jar (on the left) by double clicking on it 5. Set the name of your .jar, and change the output directory to the scripts folder: 6. Select apply. 7. To then build your script, in the navbar select Build -> Build Artifacts... -> Select the artifact you want to build
  18. Thanks for the report, will take a look tonight
×
×
  • Create New...