10 lines
152 B
Plaintext
10 lines
152 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iIndex = GetLocalInt(OBJECT_SELF, "index");
|
|
if(iIndex > 0)
|
|
{
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|