Everything posted by AresScripts
-
[Stable] OSBot 2.4.29 - WebWalking + LocalWalking
Alright thanks for the clarification.
-
[Stable] OSBot 2.4.29 - WebWalking + LocalWalking
So it can take a Location thats in edgeville dungeon, for example, and walk there from lumbridge?
-
[Stable] OSBot 2.4.29 - WebWalking + LocalWalking
Are dungeons under the "snazzy stuff" category?
-
Walking - Not moving sometimes
what client version are you using
- GOT MY SPONSOR!:)
-
let the bans begin....
Jagex doesnt ban bots straight away. They detect a bot, read its patterns, then look for those patterns in other players. Then when they are confident that they have detected all of the bots that are running the same script, they ban them all at once
-
I don't see my script
Have you tried restarting the client?
-
when/why did this happen?
Why would someone do that?
-
when/why did this happen?
Why would running from taxes get him banned on here?
-
Method to define closest NPC that isn't in combat?
Even though that takes up less lines of code, I like to only do one "filter" per if statement because its easier to debug for me.
-
Method to define closest NPC that isn't in combat?
Ah. I need to study up on lambda expressions
-
Method to define closest NPC that isn't in combat?
I haven't used eclipse in a while but i remember that being not necessary to fix. Warnings usually aren't an actual problem(someone correct me if im wrong)
-
Method to define closest NPC that isn't in combat?
I would use a filter like this: Filter<NPC> monsterFilter = new Filter<NPC>() { @Override public boolean match(NPC n) { if (n.getId() != monsterID) return false; if(!n.getName().equals(monsterName)) return false; if(n.isUnderAttack()) return false; return true; } }; then you can just say: NPC monster = getNpcs().closest(monsterFilter); Did that help?
-
Best Paid Agility Script here?
I would recommend you look at the last page of each thread. That way you can tell what issues each script has and tell how happy the customers are in general.
-
Ares is back
I think ill be ready to put my motherlode back on the market tomorrow. Should I post a form like its a new script? Not sure exactly what to do.
-
Ares is back
your name seems familiar, but I dont remember anything other than that
- Ares is back
-
Ares is back
I plan to re-write all of my past scripts starting with my Motherlode Miner. After I get everything back in tip top shape ill slowly release them back into the market to make sure that each release runs smoothly. I'm really excited to be back! I hope I wasnt forgotten!
- I love Maldesto
-
Price check lvl 3 skiller
Is there any way i can get in contact with you?
-
Click Analysis by Ares
Im confused. Please expain Also...Youre obviously a developer...Why do you need to hide behind a new account??
-
Click Analysis by Ares
The person who made the pre-.75 interactions also made the interactions im using, so one can deduce that they would be very similar
-
Click Analysis by Ares
Im pretty sure thats what they are doing if I interpreted the most recent patch notes right
-
Click Analysis by Ares
What do you think I should do for progression?
-
Click Analysis by Ares
Yeah I just threw it together to see how the interactions are different from a real person. Maybe I should have added more antiban, but that would also skew the results as not every script's antiban is the same. Maybe I can try to make the same script as close to real as possible and see how different the 3 are