-
Posts
11139 -
Joined
-
Last visited
-
Days Won
90 -
Feedback
100%
Everything posted by Apaec
-
the bot walking system is down due to the OSRS update today, please stand by while the devs are working on a fix! (:
-
Todays OSRS update has caused issues with OSBot walking, stand by while the devs are working on a fix! You will find all scripts requiring walking will not function correctly! Done! As Elysiano mentioned, the OSBot walking system is currently offline due to todays OSRS update. Sorry about that! I am sure the devs are working on a fix as we speak (: Thanks! ____ -Apa
-
Thanks for getting in touch, todays OSRS update has caused issues with the OSBot walking system, stand by while the devs are working on a fix! You will most likely find that all scripts which require walking are broken - perhaps try again tomorrow! -Apa
-
Hey! Yes, the break handler struggles with combat at the moment as i'm still away and haven't been able to implement a fix for this. Sorry about that! I wouldn't worry too much about getting banned, bans are so unpredictable that theres no way to know what causes a ban, why and when! Hopefully all will be okay though. The script will stop if out of ammo but only if you've configured ammo looting; I guess I should change it so that you can configure it to use ammo without looting it, since Avas is a thing. -Apa
-
Probably because you don't have the correct potions in your bank. Make sure your potions are 4 dose and you have selected the correct ones in the GUI. Also, open the console logger if you experience more issues as it will normally tell you what went wrong in there! (: Cheers -Apa
-
This script is not downloaded, but rather enabled on your account via the SDN (script delivery network). Head over to https://osbot.org/mvc/sdn2/scripts/4 and 'add' the script to your collection, then refresh your script list with the refresh button in-client and you should have access from there! -Apa
-
Have the same problem on my surface pro 4. You can't! I think it's an issue with swing, and unfortunately I don't think there's a solution without editing a java install: https://superuser.com/questions/988379/how-do-i-run-java-apps-upscaled-on-a-high-dpi-display -Apa
-
Sure, although not directly (OSBot runs the store so I cannot give script copies to individuals). To pay with RSGP, you must buy a $5 store credit voucher which you can then redeem and use to buy the script if you so choose. Vouchers can be bought from third parties, the stores of which are listed here: https://osbot.org/forum/forum/227-vouchers/ Let me know if you have any more questions! -Apa
-
Must be something wrong with how you're botting, i've almost maxed my testing account through use of it! Perhaps give this thread a read:
-
Botting is at your own risk, if you're worried about getting banned then don't bot!
-
GPSWoad | Woad leaf buyer | F2p | no reqs | up to 50k/h
Apaec replied to GPSwap's topic in Money Making
That's an interesting idea! Looks good! -
I'm not sure what you mean by this - The script will refresh when the crabs lose aggro, if you don't refresh then they will no longer attack you. You could always pause the script and manually re-aggro if you prefer? But there's no way to disable it since it's such a vital mechanic of the script!
-
Not at the moment. That being said, I might be able to add this. Thank you for suggesting this!
-
I didn't have to write a free version in the first place, be grateful that it is even up there and free for you to use.
-
Sorry I think I didn't explain myself correctly! You're right in saying that big on loops are bad, but I find the best way to manage that is to delegate script function to subclasses each with their own purpose, that way for larger and especially AIO scripts, your onLoop would be no more than 10 or 20 lines. For big scripts, breaking the code up is a must, I just don't think that a 'task' or 'node' (or whatever name you want to call it) framework is the best way and often there are much neater design patterns which fulfil a more object-oriented style! (: Apa
-
If you're finding bits of your code are interfering with other parts and it's taking you such a long time to debug, perhaps consider the structure of your code? I don't know what your task class does which you're extending with this code, but if it's just some abstract class with those methods that you're overriding, then that seems pretty useless -why not just have your code in your onLoop where you can see it all at once ^^!
-
Haha, just saw this. Wrote a similar thing a couple of years ago elsewhere, was great fun xD
-
Woo, awesome (: Congrats! Hopefully you will be able to make your money back in no time! -Apa
-
Not sure why it wouldn't work with super strengths... I deffo tested it with them! Thanks for letting me know. Yeah, I should be able to work with this. I will do some tests and implement it when I get back from holiday! -Apa
-
Unfortunately not, no - sorry! It was mainly created for deadman farming but I may look at expanding to other chest-based money making methods in the future. -Apa Unfortunately not, no - sorry! It was mainly created for deadman farming but I may look at expanding to other chest-based money making methods in the future. -Apa
-
Looks good! There are a few areas where you're running unnecessary checks e.g in your animation check in the CUT state, but other than that it looks good. As was mentioned above, it's probably best to use a pre-recorded path, but webwalking should be pretty reliable! Good luck!
-
Heya, cheers for the complements! However unfortunately at the moment I do not do private scripts as the limited free time that I do have I spend working on maintaining my SDN collection! Perhaps in the future! -Apa
-
I'm not sure why it would terminate unless you've set up breaks on the default profile, and it wouldn't know how to log back in... I've been running with the break manager just fine for some time now; but i'll run a few more tests this week to see if I can re-create this!
-
Tester.java: public class Tester { private final Script script; public Tester(Script script) { this.script = script; } public void Print(String message) { script.log(message); } } Your script main public void onStart() { Tester tester = new Tester(this) tester.print("hello"); } Wrote it in the reply box so sorry if there are any typos or if I missed anything. Hopefully that cleared things up a bit! -Apa