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

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


        spawnObject.setUnknown19(unknown19);
        Vector2 unknown22 = new Vector2(Float.MAX_VALUE, Float.MAX_VALUE);
        spawnObject.setUnknown22(unknown22);
        recipient.write(spawnObject);

        P098_UpdateAgentFullEquipment updateAgentFullEquipment = new P098_UpdateAgentFullEquipment();
        updateAgentFullEquipment.setAgentId(newCharacter.getAgentID());
        recipient.write(updateAgentFullEquipment);

        P144_UpdateMorale updateMorale = new P144_UpdateMorale();
        updateMorale.setAgentID(newCharacter.getAgentID());
        updateMorale.setMorale(newCharacter.getMorale());
View Full Code Here

TOP

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

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.