PoA_PRC8/_module/nss/chk_prop_eight.nss

20 lines
341 B
Plaintext
Raw Normal View History

#include "prc_x2_itemprop"
int StartingConditional()
{
object oForge = GetNearestObjectByTag("forge_custom",OBJECT_SELF,1);
object oItem = GetFirstItemInInventory(oForge);
int nCount = IPGetNumberOfItemProperties(oItem);
int nProps;
if (nCount > 7)
{
return TRUE;
}
return FALSE;
}