Thanks a lot for your reply
The problem is that it crashes while I'm using it in Eclipse, and I try to connect to a craked server
BTW I don't have this in start.java : String[] session = getSession(args[userIndex], args[passIndex]);
I only have this:
public class Start
{
public static void main(String[] args)
{
Main.main(concat(new String[] {"--version", "mcp"}, args));
}
public static <T> T[] concat(T[] first, T[] second)
{
T[] result = Arrays.copyOf(first, first.length + second.length);
System.arraycopy(second, 0, result, first.length, second.length);
return result;
}
}