10 lines
163 B
Plaintext
10 lines
163 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetLocalInt(GetPCSpeaker(),"Spirit") > 0)
|
|
iResult = TRUE;
|
|
return iResult;
|
|
}
|