10 lines
153 B
Plaintext
10 lines
153 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Inspect local variables
|
||
|
if(GetLocalInt(OBJECT_SELF, "convinced") != 1)
|
||
|
return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
}
|