Re: Combat Simulator Released!
Well - First off, you should have no .java files, only .class files. I assume you meant .class?
Second, Java is case sensitive. So typing
"java Fight militia wolf" is not the same as
"java fight militia wolf".
But if you actually get the "exception in main: noClassDefFoundError" type message, it means the file you tried to run does not exist, or is not runnable.
I can only imagine that you are not in the correct directory when you try to run the simulator... if you unzipped all the files to a directory, open a dos prompt, navigate to the directory, and type "dir *.class". You should see a bunch of .class files, including Fight.class and Matrix.class. Then "type java Fight blah blah" or "java Matrix blah blah blah blah", with the "blah"s replaced by unit names, and it will work if java is installed.
-Cherry
|