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

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


    updateAttributePoints.setAgentID(character.getAgentID());
    updateAttributePoints.setFreePoints((short) character.getAttPtsFree());
    updateAttributePoints.setMaxPoints((short) character.getAttPtsTotal());
    ctx.write(updateAttributePoints);

    P171_UpdatePrivProfessions updatePrivProfessions = new P171_UpdatePrivProfessions();
    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]);
View Full Code Here

TOP

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

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.