PDA

View Full Version : [317/474] ---100 Errors



M a t t
June 25th, 2010, 05:31
Hi, when I compile my server source, I get the 100 errors. Anyone know how to fix? Thanks.

Only the registered members can see the link.

Austin
June 25th, 2010, 05:32
May I ask what void you just placed in? (Post it).

M a t t
June 25th, 2010, 05:34
@echo off
title Compile
cd Source
"H:\Program Files\Java\jdk1.6.0_20\Bin\javac.exe" -cp . -d ./Bin/ ./*java
pause


Thats whats in it

Shane
June 25th, 2010, 09:28
@echo off
title Compile
cd Source
"H:\Program Files\Java\jdk1.6.0_20\Bin\javac.exe" -cp . -d ./Bin/ ./*java
pause


Thats whats in it

LMAO. If you answered his question with that, you shouldn't be coding in the first place.

Mario
June 25th, 2010, 21:27
You forgot imports, probaly

pkermarko
June 25th, 2010, 21:48
u may added maybe a wrong code??

Ninga Nun
July 15th, 2010, 07:00
You have coded something wrong or coded it with a term which it doesn't understand e.g

(playerrights) in stead of (Playerrights) or something like that.

Lolliescape
July 15th, 2010, 07:08
You have coded something wrong or coded it with a term which it doesn't understand e.g

(playerrights) in stead of (Playerrights) or something like that.

Correct.

-V.
July 15th, 2010, 10:25
Correct.

No, that would just give you a message saying that method or w/e is not recognized by the server --> One error.

If you have 100 errors, it means you missplaced a "}" or "{" or forgot one of 'em.

Look back at whatever you recently edited. If you're using Notepad++, you can just check if all of your brackets were completed.

Aphelion5
July 15th, 2010, 10:39
I'd be inclined to think what Mario said. If there were extra/not enough '}' or '{' it would come up with:
Case 1: Not enough '}' or Too many '{'

... reached end of file while parsing
}→
^
1 error
Press any key to continue . . .
Case 2: Too many '}' or Not enough '{'

... class, interface, or enum expected
}→
^
1 error
Press any key to continue . . .
But imports...
Miss one and you're screwed if you don't know what you're doing.

Can you post the source to tell us where you got it so we can work on it?

DustinClark
July 15th, 2010, 10:51
You should learn more about programming before trying to program a game.