12 lines
145 B
Plaintext
12 lines
145 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
|
|
if (GetLocalInt(OBJECT_SELF,"LostGirl") == 2)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|