Everything posted by Apaec
- wat
-
APA Rock Crabs
Um, make sure they're in the main tab (the very first one). I think the api only allows for interactions there, but could be wrong. If it's stopping and you have food, are you sure it's food you're out of? is it logging anything below?
-
APA Rock Crabs
Ye if it finds you're out of food in the bank, it logs out. Likewise it will stop if you run out of ammo, potions or any other required resource.
- APA Rock Crabs
- APA Script Trials
- You'll all miss me.
-
Seriously need a tester. Only for 2 hours!
Re-opening this as got no replies on my last thread. I've written an autoalcher and to release it (free ofc) on the store, I need to obtain a 2 hour proggie. I can't afford 2hours worth of alchs but I know some people out there do. To my understanding, the script is fully functional and basically flawless, I just need the evidence that it works to submit it for you all to use. I'll give 100k to anyone who can get me a 2 hour proggie. Cheers in advance, Apaec
-
Free script / snippet consulting service
To make it more efficient, at the moment it is loading the nearest goblin, clicking attack and then sleeping for a while. What you could do is use a filter to go through all the nearby enemies and pick out the right one. For example, using the following method: public NPC getClosestNPCInAreaForName(Area area, String name) { NPC closest = null; double lowest = Double.MAX_VALUE; for (NPC npc : this.getNpcs().getAll()) { if (npc != null && npc.exists() && area.contains(npc)) { final String npcName = npc.getName(); final double d = npc.getPosition().distance(this.myPosition()); if (npcName.equalsIgnoreCase(name) && area.contains(npc) && d < lowest) { closest = npc; lowest = d; } } } return closest; } Also, to post code neatly, use this button: Good luck! apaec
-
APA Rock Crabs
I actually pushed an update this morning so It should be out soon (V3.03) It can take up to 24hours for the script manager to approve the update.
-
APA Rock Crabs
Yes! should do Oh crap, I was always reading the ammo slot rather than the wielded item slot. I'll fix this when I get home. Cheers for letting me know!
-
Those mad gains though
Thats a bit wierd
-
APA Rock Crabs
Pushed a quick fix for this right now involving a null check. Thanks for helping the script improve! apaec
-
[TESTER REQUIRED]
Hiya all Just wrote a simple alcher, to go free on the SDN. To upload it to the SDN, the rules state I need a 2 hour proggie. To the point: I need someone to obtain a 2 hour proggie. If you add my skype ( mukl.barlow ) I will send you a local version of the script, and if you run it for 2 hours and send me a 2hour proggie, you get: 100k (i know it's not much but it's all I can afford + i don't really want to dish out any more as it's going to be a free script!) Acknowledgement on the thread Feeling of being awesome Why i'm not doing it: I can't afford 2 hours worth of alchs ^ Thanks for taking time to read Apaec
-
APA Auto Alcher
APA Auto Alcher FREE! _________________________________________________________ Features: Alchs Anything by name Efficient alching to maximise exp rate Allows a target to be specified - once this target is achieved, the script will stop. Available targets: Stop when λ magic exp gained. Stop when magic level λ reached. Stop when λ minutes passed. Informative paint with progress bar Quick and Easy GUI Supports both High & Low Alchemy Optional gaussian-random mouse/camera movements Works with all fire staves, Bryophyta's staff and Tome of Fire Dynamic signatures Things to consider before using: Botting should be a last resort. If you have a good autoclicker, use that! Use generous breaks - it's better to make slow progress over losing your account! Think about where you alch - I cannot say one location is better than another as there isn't (and never will be) any meaningful proof, but some places work better for some than others. Common alching locations include: Inside your POH Pest control bank Grand Exchange Screenshots: Track your progress: Visit http://ramyun.co.uk/alcher/YOUR_NAME_HERE.png Replace 'YOUR_NAME_HERE' with your OSBot username
-
Wizard Tower Lesser Demon Fighter
Write one Check out the tutorials section to find a ton of guides on scripting. It's for sure a steep learning curve but i'm sure you can manage it! Benefits of writing your own scripts: You can add whatever you want Its free Lower ban rate; you're the only person using the script You can add whatever features u want Share it with ur friends for poon ^
- The OSB api has marked me for life.
-
APA Script Trials
I've replied to your PM, Please contact @Maldesto and he will get it sorted for you!
-
Rate the avatar of the person above
7/10 although i've never played zelda I can see y some people might like it
- APA Script Trials
-
Gaming mice
Well I have a RAT 3 and I've had it for 2-3 years now. It's really comfortable and i've gotten used to it. It has plenty DPI and looks sweg. I game a little and it does the job, (mostly play dota2) but it works well as a general mouse too c: It's good all round I suppose, haven't had an issue with it since I got it gl apaec
-
What is enum, try, catch, exception
Allen enlightened you. I'd just like to stress that enums are lovely & very juicy
- After changing your passwords...
- APA Script Trials
-
iPhone 6 or 6 Plus?
6 plus is too big (basically an ipad, right?) but either way, careful not to bend them by putting in your pocket.
-
Free script / snippet consulting service
http://osbot.org/forum/forum/250-tutorials/ http://osbot.org/forum/topic/58775-a-beginners-guide-to-writing-osbot-scripts-where-to-get-started-by-apaec/ c: