how to change Lord vote lvl ?

10/30/2018 05:37 igorgv#1
Good night ! How do I change Lord's voting level?

Currently the players of my server vote in lvl 60, I want to switch to lvl 200

how do I do that? , in which file?

thank you - Epvp
10/30/2018 08:03 Dr. Peacock#2
First of all, if you know that the Vote is enable after LEVEL-60 try to search for LEVEL-60 ?

You need to edit lord.h in _Common. > Find this.
Code:
enum	{	nMaxCandidates	= 10, nLevelRequirements = 60	};
Here the code...
Code:
#ifdef __EPVP_LORD_TRASH
enum	{	nMaxCandidates	= 10, nLevelRequirements = 200	};
#else
enum	{	nMaxCandidates	= 10, nLevelRequirements = 60	};
#endif //__EPVP_LORD_TRASH
VersionCommon.h
Code:
#define __EPVP_LORD_TRASH