EN4_PRC8/_module/nss/en4_checkhc.nss

14 lines
259 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
int iResult;
object oPC;
iResult = FALSE;
oPC = GetPCSpeaker();
if (GetLocalInt(oPC,"PCHardCorePNP") == 0 && GetLocalInt(oPC,"PCHardcore") == 0 && GetLocalInt(oPC,"PCHardCoreSpecial") == 0)
iResult = TRUE;
return iResult;
}