16 lines
369 B
Plaintext
16 lines
369 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult = 0;
|
||
|
|
||
|
object oItem = GetFirstItemInInventory(GetObjectByTag("omegaforge" + GetStringRight(GetTag(OBJECT_SELF),1)));
|
||
|
|
||
|
while(oItem != OBJECT_INVALID)
|
||
|
{
|
||
|
iResult++;
|
||
|
|
||
|
oItem = GetNextItemInInventory(GetObjectByTag("omegaforge" + GetStringRight(GetTag(OBJECT_SELF),1)));
|
||
|
}
|
||
|
|
||
|
return iResult > 1;
|
||
|
}
|