Example #1
0
 public static void RegisterCharacter(Client client)
 {
     if (!RegisteredCharacters.Contains(client.Player.CharID))
     {
         RegisteredCharacters.Add(client.Player.CharID);
     }
 }
Example #2
0
 public static bool IsRegistered(Client client)
 {
     return(RegisteredCharacters.Contains(client.Player.CharID));
 }