Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P044_AgentAttributeCreate


    }
   
   
    public static void sendInitial(Channel channel, int agentID, int freePts, int maxPts)
    {       
        P044_AgentAttributeCreate updateAttributePoints = new P044_AgentAttributeCreate();
        updateAttributePoints.init(channel);
        updateAttributePoints.setAgentID(agentID);
        updateAttributePoints.setFreePts((byte) freePts);
        updateAttributePoints.setMaxPts((byte) maxPts);

        channel.writeAndFlush(updateAttributePoints);
    }
View Full Code Here

TOP

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

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.