12 lines
168 B
Plaintext
12 lines
168 B
Plaintext
int StartingConditional()
|
|
{
|
|
if (GetLocalInt(OBJECT_SELF,"joined")!=1)
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|