EN6_PRC8/_module/nss/en6_h_r_2.nss

15 lines
349 B
Plaintext
Raw Permalink Normal View History

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;
}