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