12 lines
128 B
Plaintext
12 lines
128 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iDone;
|
|
|
|
iDone=GetLocalInt(OBJECT_SELF,"Done");
|
|
|
|
if (iDone==0)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|