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