13 lines
261 B
Plaintext
13 lines
261 B
Plaintext
|
#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;
|
||
|
}
|