9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
int iCounter = GetLocalInt(GetModule(), "re_AreaToolIndex") - 1;
|
|
iResult = iCounter > 0;
|
|
return iResult;
|
|
}
|
|
|