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

9 lines
295 B
Plaintext

//Created by 420 for the CEP
//Reequip cloak to fix graphic bug
void main()
{
object oCloak = GetItemInSlot(INVENTORY_SLOT_CLOAK, OBJECT_SELF);
AssignCommand(OBJECT_SELF, ActionUnequipItem(oCloak));
DelayCommand(2.0, AssignCommand(OBJECT_SELF, ActionEquipItem(oCloak, INVENTORY_SLOT_CLOAK)));
}