17 lines
264 B
Plaintext
17 lines
264 B
Plaintext
|
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;
|
||
|
|
||
|
}
|