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

19 lines
369 B
Plaintext

#include "prc_x2_itemprop"
void main()
{
object oItem;
object oPC;
itemproperty ip;
int iFameUsed;
oPC=GetPCSpeaker();
oItem=GetItemPossessedBy(oPC,"en6_special_ring");
ip=ItemPropertyBonusSpellResistance(IP_CONST_SPELLRESISTANCEBONUS_14);
IPSafeAddItemProperty(oItem,ip);
iFameUsed=GetLocalInt(oPC,"FameUsed");
iFameUsed++;
SetLocalInt(oPC,"FameUsed",iFameUsed);
}