P144_UpdateMorale updateMorale = new P144_UpdateMorale();
updateMorale.setAgentID(newCharacter.getAgentID());
updateMorale.setMorale(newCharacter.getMorale());
recipient.write(updateMorale);
P154_UpdatePublicProfessions updatePublicProfessions = new P154_UpdatePublicProfessions();
updatePublicProfessions.setAgentID(newCharacter.getAgentID());
updatePublicProfessions.setProfession1(newCharacter.getProfessionPrimary());
updatePublicProfessions.setProfession2(newCharacter.getProfessionSecondary());
recipient.write(updatePublicProfessions);
P228_UpdateVitalStat updateVitalStats = new P228_UpdateVitalStat();
updateVitalStats.setAgentID(newCharacter.getAgentID());
updateVitalStats.setVitalFlagsBitfield(newCharacter.getVitalStatus());