Jump to content

Super

Lifetime Sponsor
  • Posts

    226
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Super

  1. lol? i'll post source if you want it so bad edit: i could've obfuscated it but i'd rather people be able to learn from the .jar decompile. edit: https://github.com/superuserOSBot/OSBot
  2. you're over complicating things imo for runtime: public long startTime = System.currentTimeMillis(); public void onPaint(Graphics2D g) { g.drawString("Runtime: " + Time.msToString(System.currentTimeMillis() - startTime), x, y); } public static String msToString(long ms) { int time = (int) (ms / 1000L); int h = time / 3600; int m = time / 60 % 60; int s = time % 60; return (h < 10 ? "0" + h : Integer.valueOf(h)) + ":" + (m < 10 ? "0" + m : Integer.valueOf(m)) + ":" + (s < 10 ? "0" + s : Integer.valueOf(s)); } for xp trackers just use: getExperienceTracker().getGainedXP() getExperienceTracker().getGainedXPPerHour() getExperienceTracker().getTimeToLevel()
  3. INFO && FEATURES Start script almost anywhere Completes "Rune Mysteries" quest if GUI option is selected Runs to selected altar and crafts runes Runs to bank and withdraws more rune essence Automatically withdraws and equips required tiara Logs out when out of essence Does not support any features not listed above REQUIREMENTS: Rune essence or Pure essence in bank Appropriate tiara equipped, in inventory or in bank Appropriate runecrafting level for selected altar PAINT: GUI: DOWNLOAD: http://www.mediafire.com/file/b50yxvbd79y2abd/SuperAIOF2PRunecrafter.jar SOURCE: https://github.com/superuserOSBot/OSBot UPDATE LOG:
  4. that's what i do as well. too bad not everyone possesses common sense
  5. people share stuff in the snippets section
  6. breaks do nothing. the pattern exists with or without a break and will eventually be detected.
  7. it will work if you use a snippet or write your own. i can't tell if you're being serious or not right now. just write everything yourself like everyone else
  8. mouse speed makes no difference. reaction time might. disable all randoms.
  9. sounds like an honest mistake, not stupidity
  10. if it's a number like 1337 then yeah but otherwise it doesn't really hold value imo. jagex released names tied to banned accounts etc when they added the name checker so loads of people have 3 and 4 letter/number names now
  11. remove java from your computer download and install http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html restart computer download http://osbot.org/mvc/get open osbot.jar
  12. you most likely won't get banned using an autoclicker with a random interval. look at it like this. if you autoclick perfect high alch xp, meaning you don't miss an alch, for 6+ hours then you run the risk of getting banned. if you botted even longer than that then your odds go up even more. no one knows the actual "ban rates" except for maybe jagex themselves. most people follow the theory of "more hours, more risk" if doing it on a main i recommend autoclick alch for downtimes throughout the day. when you make lunch, go out, etc. i don't recommend doing it at night but some people do without any bans. good luck
  13. it's not a single checkbox that says "antiban" though. he lists what the features are with the option to enable them. they just happen to be in a tab called "antiban" edit: if he changed the tab name to "antipattern" maybe?
  14. good stuff. just in case you didn't know, you don't need so many if statements public boolean hasArmour(){ if(getInventory().contains("Mithril platebody")){ if(getInventory().contains("Mithril platelegs")){ if(getInventory().contains("Mithril full helm")){ return true; }else{ return false; } }else{ return false; } }else{ return false; } } public boolean hasArmour(){ if(getInventory().contains("Mithril platebody") && getInventory().contains("Mithril platelegs") && getInventory().contains("Mithril full helm")) return true; } the client sees these as the same
  15. if you could make a flax picker that doesn't get banned i'd be super impressed
  16. Super

    auto alching

    best auto-clicker imo
  17. what did you laugh at? did i fuck something up? i posted from my phone but the code looks fine to me edit: you are very welcome though you fucking legend
×
×
  • Create New...