generated from Jaysyn/ModuleTemplate
11 lines
221 B
Plaintext
11 lines
221 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
object oWidget = GetLocalObject(OBJECT_SELF, "DM_SM_oWidget");
|
|
int iMaxUses = GetLocalInt(oWidget, "iMaxUses");
|
|
|
|
iResult = (iMaxUses != -1);
|
|
return iResult;
|
|
}
|