Package marauroa.common.net.message

Examples of marauroa.common.net.message.MessageS2CChooseCharacterNACK


   */
  private void rejectClient(SocketChannel channel, int clientid, PlayerEntry entry) {
    entry.state = ClientState.LOGIN_COMPLETE;

    /* Error: There is no such character */
    MessageS2CChooseCharacterNACK msgChooseCharacterNACK =
      new MessageS2CChooseCharacterNACK(channel);

    msgChooseCharacterNACK.setClientID(clientid);
    msgChooseCharacterNACK.setProtocolVersion(entry.getProtocolVersion());
    netMan.sendMessage(msgChooseCharacterNACK);
  }
View Full Code Here

TOP

Related Classes of marauroa.common.net.message.MessageS2CChooseCharacterNACK

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.