Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Can't run my client

Newbie Spellweaver
Joined
Feb 18, 2014
Messages
28
Reaction score
4
Hello, I use the Project Exile release by Raw Envy, and have set up my server using Eclipse.
I believe the server is 317 but the client that comes with the packages gives me this error:
Code:
Exception in thread "main" java.lang.Error: Unresolved compilation problem: 

    at src.Client.main(Client.java:5595)

this is where the error is apparently, but since I'm not very familiar with java this might be an easy fix:

Code:
public static void main(String args[]) {       
        try {
            nodeID = 10;
            portOff = 0;
            setHighMem();
            isMembers = true;
            signlink.storeid = 32;
            signlink.startpriv(InetAddress.getLocalHost());
            clientSize = 0;
            instance = new Client();
            instance.createClientFrame(clientWidth, clientHeight);
        } catch (Exception exception) {
        }
    }

Let me know if more information is needed.
Thanks in advance :thumbup:
 
Back
Top