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

13 lines
288 B
Plaintext

//Created by 420 for the CEP
//Check for Invalid Cloak on NPC
//Based on script tlr_helminvalnpc.nss by Stacy L. Ropella
int StartingConditional()
{
object oModel = OBJECT_SELF;
if(GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_CLOAK, oModel)))
return FALSE;
return TRUE;
}