Esempio n. 1
0
 public static string FindOfflineIPMatches(Player p, string name, out string ip)
 {
     string[] match = PlayerDB.MatchValues(p, name, "Name,IP");
     ip = match == null ? null : match[1];
     return(match == null ? null : match[0]);
 }