Ancordia_PRC8/_module/nss/craft_onlycrit.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

18 lines
436 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") == "Critical") return TRUE;
return FALSE;
}
oItem = GetNextItemInInventory(oPC);
}
return FALSE;
}