EN6_PRC8/_module/nss/en6_h_r_2.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

15 lines
349 B
Plaintext

int StartingConditional()
{
int iResult;
object oHenchman;
iResult = TRUE;
oHenchman=OBJECT_SELF;
if (GetLocalInt(oHenchman,"RESURRECTION") ==0 && GetLevelByClass(CLASS_TYPE_CLERIC,oHenchman)>12)
iResult=FALSE;
if (GetLocalInt(oHenchman,"RAISE_DEAD") ==0 && GetLevelByClass(CLASS_TYPE_CLERIC,oHenchman)>8)
iResult=FALSE;
return iResult;
}