Everything posted by Flamezzz
-
How to afk guthans or spash for 6 hours (Guide)
Or you could just write a tiny script and not waste resources on VMs?
-
Windows 10 spying.. well, aparently 7 and 8(.1) too! here's how to disable
Thanks, I'll share this on facebook.
- Buying 20m
-
How to buy/sell items on the Grand Exchange
Interact with widgets, ids are here (I think those are still correct): http://osbot.org/forum/topic/73580-ge-selection
-
[B] 50m 07 Gold
Got 25m, my skype is in my sig if you're interested in buying
-
Request: Zulrah script
Ya just write a small decent script and you won't even have to maintain it. But it takes some time to get SDN access, upload your first script and then upload the 2nd. Scripts only get uploaded like once a week now...
-
Simple Questions, Simple Answers
As far as I know it's done in a different thread, when a random event can activate the script is paused, once it's finished it is resumed. You don't have to worry about any of this. IDEA can't really decompile the random executor so I don't know that much about the internals.
-
Looking for someone to make me really simple script
Add my skype plz
-
ϝHerbCleaner
I'm not so sure if it's very simple. Either way I'm currently not creating any free scripts, for private scripts you can add my skype (a private script will be quite expensive tho).
-
MessageListener
You can just use log("....") Can you post your imports?
-
fix dialogue api
if(dialogues.isPendingContinuation() || dialogues.clickContinue()) return random(...);
-
Goldfarm methods?
Making teleport tabs using a host. Low req on skills but it does require some starting cash. Generally speaking methods with good gp/h either require starting cash, high level skills or both.
-
Someone please help me find solution to these errors
I think you only have to delete OSBot/Local/settings
- Allocate more RAM
-
Cockatrice Killer
500 clues and 20 rangers no way in hell xD It's 1/297 I think so that would be highly unlikely. Or I'm just unlucky as fck since I previously completed 700 meds without rangers but with 5 sandels and 4 wizard boots But well it would be nice gp/h anyway
-
Cockatrice Killer
Interesting... I was actually looking for some locations to add to my med hunter, never knew cockatrices frequently drop med clues
-
how do you interact with objects such as furnaces
Oh well it really should work. If you post some of your code I can take a look at it.
-
how do you interact with objects such as furnaces
Ye you could do that. I remember this was discussed somewhere and there might be a better solution.
-
how do you interact with objects such as furnaces
The correct action is actually Smelt 10 <col=ff9040>Steel
-
how do you interact with objects such as furnaces
I think this would help http://osbot.org/forum/topic/80839-isanimating/ try to put the two things together
-
how do you interact with objects such as furnaces
It's similar to http://osbot.org/forum/topic/79422-cook-all-option/
-
Runescape System update inbound!
Finally a useful update.
- Lovely little java error.
-
isAnimating()
You could listen for game messages. I think getAnimation() != -1 is exactly what isAnimating() does
-
Debugging error in onStart()?
You don't have to relaunch the client. Configure an artifact (or w/e it's called in your IDE) in the script folder and your IDE will replace it after each compilation. So all you have to do is refresh and restart the script. I think it's possible to just catch any exception in onStart and print its message. try { .... } catch(Exception e) { if(e.getMessage() != null) log(e.getMessage()); }