NWN2Wiki
Register
Advertisement

//2006.oct.19 toolset.ver.1.0.780.0

int IP_CONST_CLASS_BARBARIAN              = 0;                                                  
int IP_CONST_CLASS_BARD                   = 1;                                                   
int IP_CONST_CLASS_CLERIC                 = 2;                                                     
int IP_CONST_CLASS_DRUID                  = 3;                                                     
int IP_CONST_CLASS_FIGHTER                = 4;                                                      
int IP_CONST_CLASS_MONK                   = 5;                                                       
int IP_CONST_CLASS_PALADIN                = 6;
int IP_CONST_CLASS_RANGER                 = 7;
int IP_CONST_CLASS_ROGUE                  = 8;
int IP_CONST_CLASS_SORCERER               = 9;
int IP_CONST_CLASS_WIZARD                 = 10;

The value for each constant is the row index of the associated class from classes.2da, so if you need to use these for a class NOT on the list (which is most of them), you can reference classes.2da and use the row number.

Advertisement