internal static bool CheckPetName(string PetName) { if (PetName.Length < 1 || PetName.Length > 16) { return(false); } if (!FirewindEnvironment.IsValidAlphaNumeric(PetName)) { return(false); } return(true); }