Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P371_InstanceLoadCharName


    /**
     * Step 2
     */
    public static void charName(Channel channel, String name)
    {
        P371_InstanceLoadCharName instanceLoadCharName = new P371_InstanceLoadCharName();
        instanceLoadCharName.init(channel);
        instanceLoadCharName.setCharName(name);
       
        channel.writeAndFlush(instanceLoadCharName);
    }
View Full Code Here

TOP

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

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.