}
public static void sendInitial(Channel channel, int agentID, int freePts, int maxPts)
{
P044_AgentAttributeCreate updateAttributePoints = new P044_AgentAttributeCreate();
updateAttributePoints.init(channel);
updateAttributePoints.setAgentID(agentID);
updateAttributePoints.setFreePts((byte) freePts);
updateAttributePoints.setMaxPts((byte) maxPts);
channel.writeAndFlush(updateAttributePoints);
}