10 lines
154 B
Plaintext
10 lines
154 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iReturn = GetLocalInt(GetModule(), "iAllowExitPortal");
|
|
|
|
if (iReturn ==1) return TRUE;
|
|
|
|
else return FALSE;
|
|
}
|
|
|