Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P381_CharacterCreateError


    /**
     * Step 3.1. Abort due to false name...
     */
    public static void error(Channel channel, ErrorCode errorCode)
    {
        P381_CharacterCreateError mAction = new P381_CharacterCreateError();
        mAction.init(channel);
        mAction.setErroCode(errorCode.get());
       
        channel.writeAndFlush(mAction);
    }
View Full Code Here

TOP

Related Classes of gwlpr.protocol.gameserver.outbound.P381_CharacterCreateError

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.