Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P314_ItemStreamCreate


     * @param       channel
     * @param       gameMapId
     */
    public static void sendItems(Channel channel, int gameMapId)
    {
        P314_ItemStreamCreate itemStreamCreate = new P314_ItemStreamCreate();
        itemStreamCreate.init(channel);
        itemStreamCreate.setStreamID((short) 1);
        itemStreamCreate.setIsHero((byte) 0);

        channel.writeAndFlush(itemStreamCreate);


        P318_UpdateActiveWeaponset updateActiveWeaponset = new P318_UpdateActiveWeaponset();
View Full Code Here

TOP

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

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.