Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P127_Unknown


        UpdateGenericValueView.send(channel, agentID, GenericValue.HealthRegen, 0);
        UpdateGenericValueView.send(channel, agentID, GenericValue.PublicLevel, 1);


        // more static stuff... we still have figured out how map data is structured
        P127_Unknown zoneDataPrepMapData = new P127_Unknown();
        zoneDataPrepMapData.init(channel);
        zoneDataPrepMapData.setUnknown1(64);
        zoneDataPrepMapData.setUnknown2(128);
        zoneDataPrepMapData.setUnknown3(27);

        channel.writeAndFlush(zoneDataPrepMapData);

        P126_Unknown zoneDataMapData = new P126_Unknown();
        zoneDataMapData.init(channel);
View Full Code Here

TOP

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

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.