Files
HeroesStone_PRC8/_module/nss/tlr_helmvalid.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

21 lines
595 B
Plaintext

//::///////////////////////////////////////////////
//:: Tailoring - Check for Valid Helmet on PC & Model
//:: tlr_helmvalid.nss
//:://////////////////////////////////////////////
/*
//:://////////////////////////////////////////////
//:: Created By: Stacy L. Ropella
//:: from Mandragon's mil_tailor
//:://////////////////////////////////////////////
*/
int StartingConditional()
{
object oPC = GetPCSpeaker();
if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_HEAD, oPC))
&& GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_HEAD, OBJECT_SELF)))
return TRUE;
return FALSE;
}