Valhalla Legends Archive

Programming => General Programming => Java Programming => Topic started by: UserLoser on February 05, 2006, 03:40 PM

Title: So I'm thinking of writing a bot in Java
Post by: UserLoser on February 05, 2006, 03:40 PM
Tell me the good stuff: recommend me some IDEs, other tools, etc.  I have nearly 0 knowledge of Java, but I can teach my self everything I need to know about it like I did for VB/C++/reverse engineering/miscellaneous BS.  I can do the rest on my own.  Thanks.
Title: Re: So I'm thinking of writing a bot in Java
Post by: Yegg on February 05, 2006, 04:27 PM
I myself do not use Java. However Sun Microsystems seems to have some very nice IDE's. NetBeans was nice when I tried it.
Title: Re: So I'm thinking of writing a bot in Java
Post by: AntiVirus on February 05, 2006, 04:31 PM
If you want to make a Java bot, you should talk to iago.  He has already made one, and I bet he could help you out a lot.
Title: Re: So I'm thinking of writing a bot in Java
Post by: Hdx on February 05, 2006, 05:01 PM
Depends on what OS your working on.
On my Windows box I use JCreator (http://www.jcreator.com/)
On my linux box I use Eclipse (http://www.eclipse.org/)
Also Notepad2 (http://www.flos-freeware.ch/notepad2.html) is a easy tool for windows, it has syntax highlighting so it's handy for small one file projects.
Also you may want to bookmark the Java 2 Platform SE (http://java.sun.com/j2se/1.3/docs/api/index.html) information. It's an invaluble referance.
~-~(HDX)~-~
Title: Re: So I'm thinking of writing a bot in Java
Post by: rabbit on February 05, 2006, 05:07 PM
I use a combination of Notepad2 and Eclipse on Windows, though for a large project (IE: a bot), Eclipse is definately the better choice.  iago's JavaOp (http://www.javaop.com) is open-source, which is a good place to start.
Title: Re: So I'm thinking of writing a bot in Java
Post by: iago on February 05, 2006, 08:05 PM
Yeah, I strongly recommend eclipse [www.eclipse.org]. 

And I have all the login/cdkey/version check stuff implemented reasonably well, feel free to poke through my source (http://www.javaop.com/javaop2/src).  My CheckRevision implementation is very close to the speed of Skywing's.  The bot isn't set up in an ideal way, but the "bnetlogin" plugin should be useful to you. 

Title: Re: So I'm thinking of writing a bot in Java
Post by: Ender on February 05, 2006, 08:23 PM
I also recommend Eclipse, and be sure to get the Eclipse Visual Editor as well!

And in addition... here are some useful Sun sites
5.0 Platform API (http://java.sun.com/j2se/1.5.0/docs/api).
Sun's trail of tutorials (http://java.sun.com/learning/tutorial).
Socket programming (http://java.sun.com/docs/books/tutorial/networking/index.html).


Title: Re: So I'm thinking of writing a bot in Java
Post by: Joe[x86] on February 05, 2006, 08:37 PM
I used to use Eclipse (IDE + compiler), and I know iago does. Currently, I'm using TextPad + J2SDK, because that's what I use during class. TextPad isn't quite an 'IDE', but it's decent.
Title: Re: So I'm thinking of writing a bot in Java
Post by: iago on February 05, 2006, 10:27 PM
Quote from: Ender on February 05, 2006, 08:23 PM
I also recommend Eclipse, and be sure to get the Eclipse Visual Editor as well!

And in addition... here are some useful Sun sites
5.0 Platform API (http://java.sun.com/j2se/1.5.0/docs/api).
Sun's trail of tutorials (http://java.sun.com/learning/tutorial).
Socket programming (http://java.sun.com/docs/books/tutorial/networking/index.html).

You'll also find some useful code pieces on x86's forum (http://www.x86labs.org:81/forum/index.php/board,74.0.html).  I tend to post little libraries there as I discover them.  I recommend the assynchronous sockets one, if nothing else, it makes a HUGE difference. 
Title: Re: So I'm thinking of writing a bot in Java
Post by: UserLoser on February 06, 2006, 12:43 AM
Hmm, thanks everyone I think I'll take a look at Eclipse tonight and play around with it a bit.  This is exciting, haha
Title: Re: So I'm thinking of writing a bot in Java
Post by: Psycho on February 07, 2006, 08:25 AM
Yeah, when I messed around with Java I used notepad and SDK. But thats more trouble than an IDE would be. I'd go with Eclipse.