10 lines
163 B
Plaintext
10 lines
163 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oItem = GetFirstItemInInventory(OBJECT_SELF);
|
|
if (GetIsObjectValid(oItem))
|
|
{
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|