Jump to content

H0ppy

Trade With Caution
  • Posts

    247
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by H0ppy

  1. There is no way a hacker could steal your RS Account information. We do not store it in our servers at all. We do not send it through a connection in any way. If someone "hacked our client," they would have to first steal our unobfuscated client directly off of the developers computers, change the code, remove our security methods, then upload the link via the site. The chances of this happening are about.. 0% Well there is always a way Kati everybody knows that. There only need to be 1 person who is marter then you and your done. I got like 10 messages people blaming me my script hacked them ... Serious? grtz H0ppy
  2. Hello, Well here is the code of the Timer again: You create a new . java file which is called Timer Then paste this inside it. Now you can use a Timer object. If you need more info or examples then add my skype H0ppy
  3. HAHAHAHA i'm dieng here xD You just made my day sir ^^ Buttons, Buttons Buttons buttons push!! On On On LMFAO H0ppy
  4. Time to release 2.0 then xD Nice updater! I'll test this out and improve if I can! Thx for thx for the snippet! Grtz H0ppy
  5. Haha dat topic title x3 Thx for burning in hell? ^^ Good job man! grtz H0ppy
  6. H0ppy

    BETA v1.7.19

    Perfect update!
  7. How big is the universe? You think the earth is big? check: So how big is our universe? Is there somewhere an end of it? Is it maybe a ball? or is it a box? or it it limitless?? have fun breaking your brains grtz H0ppy
  8. How is nulling unused RAM memory going to prevent your laptop from getting hot? Lol i was thinking exactly the same ... Even java has a garbage collector So I don't see how this can improve anything ? xD H0ppy
  9. Indeed Just open multiple instances ... No need to allocate more then needed ^^
  10. Looks pretty decent! Will test this in 1 of my scripts! Thanks!! grtz H0ppy
  11. Wow really... Then he complains I'm a douchebag because apparently I didn't wrote my code... and i used adfly for some of them ... Well this is really awkward then -_- grtz H0ppy
  12. H0ppy

    vAgility AIO

    Very nice! I was creating a agil script too but i'm going to quit that anyway ^^ If you need any help, You know where to find me! Good luck! H0ppy
  13. You can also add me if you want: thomas.opheide grtz H0ppy
  14. You can't compile a jar to a class ... A jar just holds multiple classes and resources. A jar can be opened by winrar ;) So you can just copy classes out of it and then you can decompile those classes ^^ Only do this for educational end btw. grtz H0ppy
  15. You don't need source code for that ... Jad decompiler can be used to decompile .class files If you realy want to see others people code ... Else just try figuring it out yourself and stuff ^^ read the API en test some functions grtz H0ppy
  16. Here is my Timer class: public class Timer { private long period; private long startTime; public Timer(long period) { this.period = period; startTime = System.currentTimeMillis(); } public boolean isRunning() { return getElapsed() < period; } public long getElapsed() { return System.currentTimeMillis() - startTime; } public long getRemaining() { return period - getElapsed(); } public void reset() { startTime = System.currentTimeMillis(); } public void stop() { period = 0; } public static String format(long ms) { long sec = ms / 1000L; return String.format("%02d:%02d:%02d",new Object[] { Long.valueOf(sec / 3600L), Long.valueOf((sec % 3600L) / 60L),Long.valueOf(sec % 60L) }); } }
  17. The code inside the spoiler is a class. Just make a new class inside your IDE and paste that code in it. Then in your main class you can create an object of it. Like the example above. Also check this thread: (good walking) http://osbot.org/forum/topic/6283-aio-walking-class-doenst-glitch-on-break/ grtz H0ppy
  18. H0ppy

    True AIO Fighter

    Ok very nice maybe round the % on 2 decimals? Nice GUI man ^^ Took a lot of work i can see. grtz hoppy
  19. Well a smart hacker would modify the client so it sends even local data to there databases So if then can do that nobody is safe ^^ grtz hoppy
  20. This answer just MADE MY DAY xD 1) I'm 22 years old so i don't think you have to speak to me about that. 2) I know your dutch. I'm dutch too so ... Maybe check your messages above ... too much faults to typ in here. 3) Money hungry xD I'm waiting for 2 weeks on a admin to release 8 scripts at once and released 2 open source. 4) I've finished 5 years of computer science + Coding in java for about 7 years. Don't think you have to learn me anything about java conventions. 5) Check my signature ^^ I'm done with this. Not wasting 5 more seconds of my time on you. kind regards H0ppy
×
×
  • Create New...