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

20 lines
519 B
Plaintext

//::///////////////////////////////////////////////
//:: Tailoring - Check for Invalid Helmet on NPC
//:: tlr_helminvalnpc.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 FALSE;
return TRUE;
}