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

20 lines
517 B
Plaintext

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