I want to put a limit on Races / Classes creation on my new server !
On my Script : ServerProperties.cs i can modify thoses entries :
- Code: Select all
/// <summary> /// Disable some classes from being created /// </summary> [ServerProperty("classes", "disabled_classes", "Serialized list of disabled classes, separated by semi-colon or a range with a dash (ie 1-5;7;9)", "")] public static string DISABLED_CLASSES; /// <summary> /// Disable some races from being created /// </summary> [ServerProperty("classes", "disabled_races", "Serialized list of disabled races, separated by semi-colon or a range with a dash (ie 1-5;7;9)", "")] public static string DISABLED_RACES;
How can i know the number of Minotaur Races ? etc...
THANK YOU !