EN4_PRC8/_module/nss/qst_dwarfcon_1.nss
Jaysyn904 b464d8da05 Initial Commit
Initial Commit [v1.32PRC8]
2025-04-03 13:38:45 -04:00

20 lines
336 B
Plaintext

int StartingConditional()
{
int iRandomStep;
int iDwarfDungeon;
int iResult;
iRandomStep = GetLocalInt(OBJECT_SELF, "RandomStep");
iDwarfDungeon = GetLocalInt(GetPCSpeaker(),"DwarfDungeon");
iResult = FALSE;
if (iRandomStep == 2)
iResult = TRUE;
if (iDwarfDungeon > 0 && iRandomStep == 4)
iResult = TRUE;
return iResult;
}