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

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


    updatePrivProfessions.setAgentID(character.getAgentID());
    updatePrivProfessions.setProfession1(character.getProfessionPrimary());
    updatePrivProfessions.setProfession2(character.getProfessionSecondary());
    ctx.write(updatePrivProfessions);

    P206_UpdateSkillBar updateSkillBar = new P206_UpdateSkillBar();
    updateSkillBar.setAgentID(character.getAgentID());
    updateSkillBar.setSkillBar(new long[8]);
    updateSkillBar.setSkillBarPvpMask(new long[8]);
    updateSkillBar.setUnknown4((byte) 1);
    ctx.write(updateSkillBar);

    P147_UpdateGenericValueInt updateEnergy = new P147_UpdateGenericValueInt();
    updateEnergy.setAgentId(character.getAgentID());
    updateEnergy.setValueId(GenericValues.Energy.getValue());
View Full Code Here

TOP

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

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.