Hey, im doing Clan Chat for z508..
i get this error
Code:Compiling net/com/codeusa/Engine.java
.\net\com\codeusa\Engine.java:14: <identifier> expected
import net.com.codeusa.ClanChat.;
^
1 error
Tryk på en vilkårlig tast for at fortsætte . . .
Printable View
Hey, im doing Clan Chat for z508..
i get this error
Code:Compiling net/com/codeusa/Engine.java
.\net\com\codeusa\Engine.java:14: <identifier> expected
import net.com.codeusa.ClanChat.;
^
1 error
Tryk på en vilkårlig tast for at fortsætte . . .
Doesn't recognize that folder/file.
LOLQuote:
Originally Posted by BOOM BOOM [Only registered and activated users can see links. Click Here To Register...]
LOL
LOL
no
you see the import net.com.codeusa.ClanChat.;
make it import net.com.codeusa.ClanChat.*;
I did that, got this
Code:Compiling net/com/codeusa/Engine.java
.\net\com\codeusa\Engine.java:14: package net.com.codeusa.clanchat does not exis
t
import net.com.codeusa.clanchat.*;
^
.\net\com\codeusa\Engine.java:39: cannot find symbol
symbol : class ClanChat
location: class net.com.codeusa.Engine
public static ClanChat clanChat = new ClanChat();
^
.\net\com\codeusa\model\Player.java:21: package net.com.codeusa.ClanChat does no
t exist
import net.com.codeusa.ClanChat.ClanChat;
^
.\net\com\codeusa\model\Player.java:22: package net.com.codeusa.ClanChat does no
t exist
import net.com.codeusa.ClanChat.Room;
^
.\net\com\codeusa\util\ByteVector.java:84: illegal start of expression
public int readDWordBigEndian() {
^
.\net\com\codeusa\util\ByteVector.java:84: ';' expected
public int readDWordBigEndian() {
^
.\net\com\codeusa\util\ByteVector.java:91: illegal start of expression
public long readBigQWord() {
^
.\net\com\codeusa\util\ByteVector.java:91: ';' expected
public long readBigQWord() {
^
.\net\com\codeusa\io\PacketManager.java:13: cannot find symbol
symbol : class ClanChat
location: package net.com.codeusa
import net.com.codeusa.ClanChat;
^
.\net\com\codeusa\net\packethandler\PublicChat.java:42: reached end of file whil
e parsing
}→
^
.\net\com\codeusa\util\Misc.java:19: cannot find symbol
symbol : class Player
location: class net.com.codeusa.util.Misc
public static Player player(String name) {
^
.\net\com\codeusa\Engine.java:39: cannot find symbol
symbol : class ClanChat
location: class net.com.codeusa.Engine
public static ClanChat clanChat = new ClanChat();
^
.\net\com\codeusa\io\PacketManager.java:74: cannot find symbol
symbol : method readBigQWord()
location: class net.com.codeusa.util.ByteVector
long cpName = p.stream.readBigQWord();
^
.\net\com\codeusa\util\ByteVector.java:88: cannot return a value from method who
se result type is void
| ((inBuffer[inOffset++] & 0xff) << 1432242680);
^
.\net\com\codeusa\util\ByteVector.java:92: cannot find symbol
symbol : method readDWordBigEndian()
location: class net.com.codeusa.util.ByteVector
long l = (long) readDWordBigEndian();
^
.\net\com\codeusa\util\ByteVector.java:93: cannot find symbol
symbol : method readDWordBigEndian()
location: class net.com.codeusa.util.ByteVector
long l1 = (long) readDWordBigEndian();
^
.\net\com\codeusa\util\ByteVector.java:99: cannot return a value from method who
se result type is void
return (l << -41780448) + l1;
^
.\net\com\codeusa\net\packethandler\PublicChat.java:33: package Engine does not
exist
Engine.clanChat.sendMessage(p, chatText.substring(1));
^
.\net\com\codeusa\util\Misc.java:20: cannot find symbol
symbol : class Player
location: class net.com.codeusa.util.Misc
for (Player p : Engine.players) {
^
.\net\com\codeusa\util\Misc.java:20: cannot find symbol
symbol : variable Engine
location: class net.com.codeusa.util.Misc
for (Player p : Engine.players) {
^
20 errors
Tryk på en vilkårlig tast for at fortsætte . . .
changed the import to
now i got this?Code:import package net.com.codeusa.ClanChat.*;
Code:Compiling net/com/codeusa/Engine.java
.\net\com\codeusa\Engine.java:14: <identifier> expected
import package net.com.codeusa.ClanChat.*;
^
1 error
Tryk på en vilkårlig tast for at fortsætte . . .