11 lines
153 B
Plaintext
11 lines
153 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetLocalInt(GetPCSpeaker(),"ArenaHasFought") == 0)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|