11 lines
169 B
Plaintext
11 lines
169 B
Plaintext
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(GetPCSpeaker(), "GabFirstTimeTalked") == 1))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|