Here's part of the problem.
Code:
#define CLASS_NORACE 0
#define CLASS_GOD 1
#define CLASS_THE_DEVIL 2
#define MAXCLASSES 3
new PlayerClass[33]
new PlayerXP[33]
new PlayerLevel[33]
new const CLASSES[MAXCLASSES][] = {
"None",
"GOD",
"THE DEVIL",
}
Change everything with Class in it to Race. Or change everything in your code that has race to class.
For example, you have PlayerClass and yet you use PlayerRace