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

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


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

    P318_UpdateActiveWeaponSet updateActiveWeaponSet = new P318_UpdateActiveWeaponSet();
    updateActiveWeaponSet.setItemStreamid(itemStreamId);
    ctx.write(updateActiveWeaponSet);

    // TODO: I didn't want to implement what they did in their latest version so old version of this packet was taken for now!
    // Note: ITEM STREAM WEAPON BAR SLOTS
    // (would go here)
View Full Code Here

TOP

Related Classes of be.demmel.jgws.packets.gameserver.outbound.P318_UpdateActiveWeaponSet

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.