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

19 lines
496 B
Plaintext

//::///////////////////////////////////////////////
//:: Tailoring - Remove Helm
//:: tlr_removehelm.nss
//:://////////////////////////////////////////////
/*
*/
//:://////////////////////////////////////////////
//:: Created By: Stacy L. Ropella
//:: from Mandragon's mil_tailor
//:://////////////////////////////////////////////
void main()
{
object oHelm = GetItemInSlot(INVENTORY_SLOT_HEAD, OBJECT_SELF);
DelayCommand(0.5f, AssignCommand(OBJECT_SELF, ActionUnequipItem(oHelm)));
}