Jump to content

Explv

Scripter II
  • Posts

    2314
  • Joined

  • Last visited

  • Days Won

    6
  • Feedback

    100%

Everything posted by Explv

  1. Wasn't crying, just "memeing" as the kids say. And it's just that every John Doe thinks that they can improve on the OSBot mouse movement, considering you have already asked for help implementing it, I think you fall into that category. I'm pretty sure OSBot already uses the gRandom methods for mouse movement. So whatever you write is probably just going to be buggy as hell due to not accounting for all the cases that the built in method accounts for, and look the same / worse than the OSBot methods.
  2. Don't forget to add woodcutting xp checks at random intervals
  3. Pushed a fix. Sorry again... Please try again when the SDN is updated.
  4. If you are overriding onMessage, you do not then need to call getBot().addMessageListener(this). You will just end up having two message listeners. Consider learning Java before trying to write scripts, simply asking other people to write things for you is not going to help you in the long run: You have an extra closing bracket..
  5. If all he is trying to do is shift drop, he should just enable shift dropping in the rs settings and then the OSBot drop method will automatically use shift dropping. I have a snippet in the snippets section to enable shift dropping
  6. Explv

    Gambling

    Not me, but a pal from school won the poker stars Sunday millions tourny, made >100k iirc. Now he's in Vegas all the time. Used to play a bit myself, but don't have the patience for it
  7. If I am seeing the compile time correctly, the GUI should now be fixed on the SDN. Please let me know if you have any more issues. I noticed I removed the task delete buttons, I'll add those back tonight along with a CLI parameter for starting the script. Thanks
  8. OK, I've pushed a TONNE of changes to the GUI, saving / loading should be fixed once the SDN is updated.
  9. Ok I'll work on further GUI improvements sorry about the inconvenience I have found the issue, will try and push a fix tonight
  10. Just write your own? Something like: public Area getArea(Position pos, int size) { return new Area(pos.translate(-size, -size), pos.translate(size, size)); }
  11. This *should* now be fixed on the SDN
  12. Just pushed a fix for this, saving / loading should work when the SDN is next updated.
  13. NEW UPDATE - Code can now be pasted into the output area and it will be displayed on the map
  14. Thanks for the confirmation, I'll take a look at it
  15. I'm on my phone so the formatting is a bit weird. But it looks like at the bottom of your script you have two global variables bankBooth and fountainObject that store the results of calls to objects.closest If that is the case, that is what is breaking your script. The objects variable will not be initialised before onStart is called, so your script will break. You should move those variables to onStart or onLoop
  16. Thanks, it could be an issue with saving / loading and will be resolved once I push my update
  17. I have written a fix, I plan to push it to the SDN tonight Is this after loading a saved config? Or just a general issue with the GE task?
  18. Explv

    Explv's Walker

    Seriously? You're going to call me a fool? Firstly, this is a FREE script, I do not make any money on it and nor does OSBot. I wrote this purely for the benefit of yourself and other community members. Secondly the script DOES work, however it makes use of the OSBot web walker. It doesn't guarantee that it can walk from everywhere in RuneScape because the web walker doesn't support every location in RuneScape. If you checked the log you would probably see a message like no path could be found. Thirdly, scripts can break over time, and require the script writer to fix something. Suggesting that posts made months / years ago should be deleted is ridiculous. Finally, when a script doesn't work you should tell the script writer in what way it does not work so that they can evaluate the situation and give you advice or fix their script. Seriously, you really should have more respect. I put my own time into this script for everyone elses benefit, and to call me a fool is pathetic, if anyone is a fool here, it's you.
  19. Use configs. A config consists of an ID and a value. You can view them as they are updated by selecting the configs option in the OSBot settings. As you progress through a quest, an associated config's value will be updated indicating the progress. For example, I think for Tutorial Island the id is 281, so you get the progress using: int progress = getConfigs().get(281); This value will change as you progress, for example, when you start Tutorial Island it would be something like: 281 : 0 After you talk to the RuneScape Instructor it might be something like: 281 : 10 Etc. There is a small section on this in my Scripting 101 tutorial, the link for which is in my signature.
  20. #187AB3 #CDCDCD #191919 #181818 #DDDDDD #535353
×
×
  • Create New...