Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P148_UpdateTargetGenericValue


        channel.writeAndFlush(updateGenericValueFloat);
    }

    public static void send(Channel channel, int targetAgentID, int casterAgentID, GenericValue valueID, int value)
    {
        P148_UpdateTargetGenericValue updateGenericValueTarget = new P148_UpdateTargetGenericValue();
        updateGenericValueTarget.init(channel);
        updateGenericValueTarget.setValueID(valueID.ordinal());
        updateGenericValueTarget.setTarget(targetAgentID);
        updateGenericValueTarget.setCaster(casterAgentID);
        updateGenericValueTarget.setValue(value);

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

TOP

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

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.