Everything posted by Explv
-
General Java help
I don't think that is the point of his question...
-
General Java help
Java is pass by value, not pass by reference. Consider reading this: http://jonskeet.uk/java/passing.html
-
Quest Completion dialog
Have you tried: getWidgets().closeOpenInterface();
-
lumbridge stairs selection
Or just: getWalking().webWalk(Banks.LUMBRIDGE_UPPER);
-
Does gRandom use nextGuassian?
If you're talking about MethodProvider.gRandom, then yes it does.
-
Interacting with smelt widget
Shouldn't it be (sorry on phone): getWidgets().getWidgetContainingText("Bronze").Interact("Smelt X Bronze"); I think the interaction is "Smelt X Bronze" rather than "Smelt X"
-
Click Patterns and Standard Deviation
I don't think @Easy said anywhere in his post that those images represented OSBot. Correct me if I'm wrong though.
-
Click Patterns and Standard Deviation
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.
-
Click Patterns and Standard Deviation
Don't forget to add woodcutting xp checks at random intervals
-
How long to write first RS script
It depends. If you don't know Java, you should spend some time learning it first. If you know Java well, then it is not a particularly long process to learn how to write scripts. There are tonnes of tutorials and snippets you can look at. And the API is fairly straight forward. It all depends really on your general programming and Java knowledge.
-
Explv's AIO [13 skill AIO in 1 script]
Pushed a fix. Sorry again... Please try again when the SDN is updated.
-
help with chat message /widgets? Looki
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..
- Control script from within script
-
getMenu().getDefaultToolTip();
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
-
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
-
Explv's AIO [13 skill AIO in 1 script]
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
-
Explv's AIO [13 skill AIO in 1 script]
OK, I've pushed a TONNE of changes to the GUI, saving / loading should be fixed once the SDN is updated.
-
NPC Dialog issue!
For future reference, there is an API method: getDialogues().completeDialogue(String... options); That will complete the entire dialog, including clicking continue and selecting options based on the Strings you provide.
-
Explv's AIO [13 skill AIO in 1 script]
Ok I'll work on further GUI improvements sorry about the inconvenience I have found the issue, will try and push a fix tonight
-
Position getArea() method?
Just write your own? Something like: public Area getArea(Position pos, int size) { return new Area(pos.translate(-size, -size), pos.translate(size, size)); }
-
Explv's AIO [13 skill AIO in 1 script]
This *should* now be fixed on the SDN
-
Explv's Map
- Explv's AIO [13 skill AIO in 1 script]
Just pushed a fix for this, saving / loading should work when the SDN is next updated.- Explv's Map
NEW UPDATE - Code can now be pasted into the output area and it will be displayed on the map- Explv's Map
- Explv's AIO [13 skill AIO in 1 script]