hey guys, I want to use a bot in Haven and Hearth, and I have a script (for harvesting, I dont want to waste hours collecting all the wheat)
But the sad thing is, even though I have the script ready to go, I have no idea how to use it. like, no idea about the basics of java.
someone please help?
Name:
Anonymous2011-02-12 16:25
I feel ashamed that my thread is not even worth trolling
The basics of Java:
- Everything is an "object." Except the primitive data types. Which also have wrapper classes.
- The entry to your application is a public class that has the same name as the *.class file it is in and a public static void main(String[] arg) method in that class.
I don't know where else to go with this. It's not rocket science, it's Java.
>>6 - Everything is an "object." Except the primitive data types. Which also have wrapper classes.
>mfw i found out about that after moving from C/C++ to Java