EN6_PRC8/_module/nss/en6_unequip.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

20 lines
338 B
Plaintext

#include "prc_x2_itemprop"
void main()
{
object oItem=GetPCItemLastUnequippedBy();
object oPC=GetPCItemLastUnequipped();
ExecuteScript("x2_mod_def_unequ",OBJECT_SELF);
if (GetLocalString(oItem,"PCWielder") != "")
{
IPRemoveAllItemProperties(oItem,DURATION_TYPE_TEMPORARY);
SetLocalString(oItem,"PCWielder","");
}
}