Can the number as seen here #define MAX_MASTER 24 be higher for example 25, even if JOB_KNIGHT_HERO is at 24 following with 25? Do they relate to eachother (must the numbers be unique or is it separate from MASTER and HERO?)
Code:
// Master #define JOB_KNIGHT_MASTER 16 #define JOB_BLADE_MASTER 17 #define JOB_JESTER_MASTER 18 #define JOB_RANGER_MASTER 19 #define JOB_RINGMASTER_MASTER 20 #define JOB_BILLPOSTER_MASTER 21 #define JOB_PSYCHIKEEPER_MASTER 22 #define JOB_ELEMENTOR_MASTER 23 #define MAX_MASTER 24 // Hero #define JOB_KNIGHT_HERO 24 #define JOB_BLADE_HERO 25 #define JOB_JESTER_HERO 26 #define JOB_RANGER_HERO 27 #define JOB_RINGMASTER_HERO 28 #define JOB_BILLPOSTER_HERO 29 #define JOB_PSYCHIKEEPER_HERO 30 #define JOB_ELEMENTOR_HERO 31 #define MAX_HERO 32