19 lines
592 B
Plaintext
19 lines
592 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oItem = GetFirstItemInInventory(oPC);
|
|
int nValue;
|
|
while (GetIsObjectValid(oItem))
|
|
{
|
|
if (GetLocalInt(oItem, "Prototype") == TRUE)
|
|
{
|
|
if (GetLocalString(oPC, "LastProperty") == "Attack" || GetLocalString(oPC, "LastProperty") == "Enhancement"
|
|
|| GetLocalString(oPC, "LastProperty") == "Mighty" || GetLocalString(oItem, "Type") == "Ammo") return FALSE;
|
|
return TRUE;
|
|
}
|
|
oItem = GetNextItemInInventory(oPC);
|
|
}
|
|
return FALSE;
|
|
}
|