Package be.demmel.jgws.packets.gameserver.outbound

Examples of be.demmel.jgws.packets.gameserver.outbound.P314_ItemStreamCreate


    // Retrieve the map this user is on
    CharacterData character = serverData.getCurrentCharacter();

    short itemStreamId = 1;

    P314_ItemStreamCreate itemStreamHead = new P314_ItemStreamCreate();
    itemStreamHead.setStreamID(itemStreamId);
    ctx.write(itemStreamHead);

    P318_UpdateActiveWeaponSet updateActiveWeaponSet = new P318_UpdateActiveWeaponSet();
    updateActiveWeaponSet.setItemStreamid(itemStreamId);
    ctx.write(updateActiveWeaponSet);
View Full Code Here

TOP

Related Classes of be.demmel.jgws.packets.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.