Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/04/21 in all areas

  1. 'the intelligent choice' By @Czar CURRENT RECORD: 201 HOURS Lifetime updates and support, request a feature either on the main thread or on our active discord! For advice and strategies, join our discord! You can also purchase the bot with GP if you'd like. 84 HOUR PROGRESS ON A LEVEL 20 ACCOUNT Suicided account with mirror mode near rock crabs, 81 mining! I will probably go for 99 Mine 1 drop 1 item drop pre-hover feature: (it's faster in the actual update)
    1 point
  2. Good find, I'll address that ASAP. Dw about logs I know exactly why that one happens, thanks for the help.
    1 point
  3. Sorry that I dont have logs, but I've been trying to use the glory in house while banking, and its working and getting me to the bank, but once there, it tries to find Amulet of glory(POH) as an item, and since it can't find it (because it isnt an item) it thinks its done, and it terminates the script.
    1 point
  4. I'll get back to you on this, I need to ask around who is the #1 these days with proxies ^^
    1 point
  5. V2.35 Has been pushed.ο»Ώ - Removed Entity#isOnScreen
    1 point
  6. Hey man there is one more issue when ever he calcualtes the ores and if the value exceeds 13K... It buys more but than sat there at the GE while menu is opened waiting for until the complete ores have been bought... So it's like sitting there for the next 4 hours until the limits resets.... Am I doing something wrong or it;s the script?
    1 point
  7. Hey Czar, Any recommendations where to get good proxies?
    1 point
  8. Does your Thieving Bot pickpocket, Elves from Prifddinas & Vyres with Dodgy Necklaces
    1 point
  9. Cheers for the input guys!
    1 point
  10. This script is perfect. Takes a while to create a profile but once you have done this once you can save it for future use and quickly edit things when you unlock something new. Could you please add support for the tool leprechaun thou? It's not a huge issue but would be better if you could maybe add a check box on the general tab before starting the script to get tools from him instead of bank?
    1 point
  11. Yeah definitely use Remote Desktop if you can, team viewer is just easier to set up imo.
    1 point
  12. Just use google Remote Desktop it’s 1000000 times better than teamviewer. I wish I found it sooner lol. also if you just want to write some code on your phone I’ve used Koder which was just ok. It’s Free in app store
    1 point
  13. Hello, I was using the bot few weeks ago was running great. Ran into a issue trying to run the scrip today. Seems to be getting sucked in the house and do nothing. Just want to bring it to your attention
    1 point
  14. I’ve never used a mobile IDE, but I’d bet that none of them can compare to what a desktop has to offer. You could try using an app like team viewer to view your PC so that you’re still using a normal IDE?
    1 point
  15. script works flawless, accidently left it on for 7.5hrs overnight lol , lets see if I get a ban
    1 point
  16. Hey can i get a.... just kidding. I outright bought the script. Hell of a job
    1 point
  17. You want to make sure you're assigning the tree variable within your loop and not just inside your class, because otherwise it will never get reassigned. Also, your code will currently get the closest tree to the player which may not be in the tree area, so one way to only get trees within the tree area is using Filters. Here is an example of an RS2Object filter where I'm filtering for three things: Area draynorArea = new Area(3075, 3249, 3102, 3214); public static Filter<RS2Object> WILLOW = new Filter<RS2Object >() { @Override public boolean match(RS2Object object) { return object.getName().equals("Willow") && object.hasAction("Chop down") && draynorArea.contains(object); } }; Hopefully it's clear based on the code, but this filters for objects named "Willow" that have the action "Chop down" that are contained in my area variable of draynorArea. Then making use of this would be: RS2Object myTree = objects.closest(WILLOW); Now the variable myTree will only get the closest object that fits our filter. Best of luck!
    1 point
Γ—
Γ—
  • Create New...