Aantioch_Infernum/_module/nss/asg_resdesknext.nss

9 lines
267 B
Plaintext
Raw Normal View History

2023-08-08 16:22:17 -04:00
int StartingConditional()
{
int iResult = FALSE;
int iCurListPoint = GetLocalInt(OBJECT_SELF,"ASG_MIC_CURRENTLISTPOINT");
int iMaxArray = GetLocalInt(OBJECT_SELF,"ASG_MIC_TOTALLIST");
if (iCurListPoint<iMaxArray) iResult = TRUE;
return iResult;
}