Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P147_UpdateGenericValue


public class UpdateGenericValueView
{
   
    public static void send(Channel channel, int agentID, GenericValue valueID, int value)
    {
        P147_UpdateGenericValue updateGenericValueInt = new P147_UpdateGenericValue();
        updateGenericValueInt.init(channel);
        updateGenericValueInt.setValueID(valueID.ordinal());
        updateGenericValueInt.setAgentID(agentID);
        updateGenericValueInt.setValue(value);

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

TOP

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

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.