13 lines
261 B
Plaintext
Raw Permalink Normal View History

#include "model_inc"
int StartingConditional()
{
int iIndex = GetLocalInt(OBJECT_SELF, "index");
int iCounter = GetLocalInt(OBJECT_SELF, "clothescount");
if((iIndex + 1) * INDEXCOUNT < iCounter)
{
return TRUE;
}
return FALSE;
}