-
Posts
226 -
Joined
-
Last visited
-
Feedback
100%
Everything posted by Super
-
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
-
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()
-
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:
-
kys
-
nice tile floor. looks great!
-
When you really want that expensive script but can't afford it
Super replied to LeBron's topic in Spam/Off Topic
that's what i do as well. too bad not everyone possesses common sense -
Thread for sharing pictures of breasts, ass, hoes and hairy pussies.
Super replied to Sociopath's topic in Spam/Off Topic
pics are hot af -
people share stuff in the snippets section
- 9 replies
-
- programming
- cursor
- (and 5 more)
-
breaks do nothing. the pattern exists with or without a break and will eventually be detected.
-
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
- 9 replies
-
- programming
- cursor
- (and 5 more)
-
there are snippets for autologin
- 9 replies
-
- programming
- cursor
- (and 5 more)
-
mouse speed makes no difference. reaction time might. disable all randoms.
- 9 replies
-
- programming
- cursor
- (and 5 more)
-
you're trying too hard
-
sounds like an honest mistake, not stupidity
-
Apply breaks in OSbot client without reloading client
Super replied to DoubleD's topic in General Help
breaks do nothing -
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
-
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
-
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
-
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?
-
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
-
if you could make a flax picker that doesn't get banned i'd be super impressed
-
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