20 lines
328 B
Plaintext
20 lines
328 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iRandomStep;
|
|
int iElfDungeon;
|
|
int iResult;
|
|
|
|
iRandomStep = GetLocalInt(OBJECT_SELF, "RandomStep");
|
|
iElfDungeon = GetLocalInt(GetPCSpeaker(),"ElfDungeon");
|
|
|
|
iResult = FALSE;
|
|
|
|
if (iRandomStep == 1)
|
|
iResult = TRUE;
|
|
|
|
if (iElfDungeon > 0 && iRandomStep == 3)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|