EN4_PRC8/_module/nss/qst_con_q6v2.nss

17 lines
264 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
int iHenchman;
int iRandom;
int iResult;
iHenchman=GetLocalInt(GetPCSpeaker(),"Henchman");
iRandom = GetLocalInt(OBJECT_SELF, "RandomStep");
iResult = FALSE;
if (iHenchman == 0 && iRandom == 6)
iResult = TRUE;
return iResult;
}