10 lines
158 B
Plaintext
10 lines
158 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Inspect local variables
|
||
|
if((GetLocalInt(GetModule(), "iMaxLevelUp") >= 27))
|
||
|
return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
}
|