Everything posted by H0ppy
-
What's up with all the random events?
I also got like 6-10 an hour by just killing druids and banking ... Every time i open a door or want to bank i get a random -_- grtz H0ppy
-
Bot Smart - What it is & How to do it.
Haha i always said Bot smart xD well nice guide!! ^^ grtz H0ppy
- Ban Rates
-
Wanting to create Scripts - Bots
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
-
Wanting to create Scripts - Bots
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
-
Show Item IDs In Inventory & Equipment Source Code
Good work
-
Simple Timer class
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) }); } }
-
Easy walking with TilePaths
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
-
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
-
Shop Interface (just like Bank but then for shops!)
Good job! x3 Peace grtz H0ppy
-
Attention: All TriBot Users! TriBot has been compromised!
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
-
This is why you do NOT use the same in game name as forum name.
Haha never saw that before. But i don't see the relation abotu 2 names? it could be some1 else
-
Zybez Price Checker
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
-
Zybez Price Checker
1) Grow up 2) English? Do you even ...? 3) Get some respect for people 4) Java conventions 5)... Want more? xD na I'm joking. Your a cool guy but your really hostile to me ... The price checker is very good I'm not saying I'm perfect, but you really need to check yourself before judging me! Kind regards H0ppy
-
Zybez Price Checker
Saying its better is complaining ? Lucky i don't say the truth about you ... First of Grow up then we talk again! kind regards H0ppy
-
Zybez Price Checker
They are offending me ... I'm just defending i know this code i way better then mine I released... Still no reason to offend me? kind regards H0ppy
-
SDN scripts
I know I trust them too. It was just an simple exmaple on how to trust anybody...
-
Zybez Price Checker
The code isn't shitty. Its just not as effective as above. maybe rate your own scripting tutorials/way of coding before looking to my code. Kind regards H0ppy
-
Easy walking with TilePaths
generated from where? some AI robot I made? what a question ... No i copied a piece of it and manaully typed the last part becaus ei didn't copied it whole by accident... wow man. Like you never make mistakes ... You so hostile. Just because i turned down your offer to make tutorials together? grtz hoppy
-
Easy walking with TilePaths
My bad. I typed some manually in here -_-
-
Zybez Price Checker
So much code for a simple checker xD You can do it with half the code. That half-assed code is from 2 months ago ^^ You don't have to spoonfeed everybody with the best methods ... grtz hoppy
-
League of legends, What would you do?
I only play yordles hahhaah xD GF ^^ grtz
-
Simulate "F" Key press?
Just use Robot class or so ... why do you even need to send a keypress? You can change tabs way more easy. Check post above ^^ grtz
-
Looking to learn how to script
Hello, its right here: http://osbot.org/forum/topic/5490-osbot-updated-programming-tutorials/ Its in the Development/scripting resources/projects section. kind regards H0ppy
- AIO Walking Class (doens't glitch on break)