Page 1 of 1

How to know the Races / Classes number ?

PostPosted: Sat May 11, 2013 7:31 pm
by Amoniks
Hi all !

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;
For example :

How can i know the number of Minotaur Races ? etc...

THANK YOU !

Re: How to know the Races / Classes number ?

PostPosted: Sat May 11, 2013 11:13 pm
by Argo
take a look at globalconstants.cs in your directory called gameserver

Re: How to know the Races / Classes number ?

PostPosted: Sun May 12, 2013 10:54 am
by Amoniks
Thank's a lot !