public void SendSetName(string text, IArmletInfo armletId) { text = Armlet.TransformName(text); armletId.SetName(text); SendCommand(armletId, MessageId.MSG_SET_PLAYER_NAME, text); }
public string GetName(byte armletId) { return(_savedData.ContainsKey(armletId) ? Armlet.TransformName(_savedData[armletId].Name) : null); }