AOC_PRC8/_module/nss/chk_bp1.nss
Jaysyn904 5e558169a0 Initial Commit
Initial Commit
2025-04-03 11:24:16 -04:00

16 lines
415 B
Plaintext

int StartingConditional()
{
object oPC = GetPCSpeaker();
object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC);
itemproperty ipAb = GetFirstItemProperty(oItem);
while (GetIsItemPropertyValid(ipAb))
{
if (GetItemPropertySubType(ipAb)==18 && GetItemPropertyParam1Value(ipAb)==0)
return TRUE;
ipAb = GetNextItemProperty(oItem);
}
return FALSE;
}