19 lines
369 B
Plaintext
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_20);
|
|
IPSafeAddItemProperty(oItem,ip);
|
|
|
|
iFameUsed=GetLocalInt(oPC,"FameUsed");
|
|
iFameUsed++;
|
|
SetLocalInt(oPC,"FameUsed",iFameUsed);
|
|
}
|