Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P150_UpdateGenericModifier


        channel.writeAndFlush(updateGenericValueInt);
    }

    public static void send(Channel channel, int agentID, GenericValue valueID, float value)
    {
        P150_UpdateGenericModifier updateGenericValueFloat = new P150_UpdateGenericModifier();
        updateGenericValueFloat.init(channel);
        updateGenericValueFloat.setValueID(valueID.ordinal());
        updateGenericValueFloat.setAgentID(agentID);
        updateGenericValueFloat.setValue(Float.floatToRawIntBits(value));

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

TOP

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

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.