Rune_PRC8/_module/nss/curseitemequipe.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

35 lines
1.0 KiB
Plaintext

//Module onEquip Event
//Code by CelestialRyan
void main()
{
object oItem = GetPCItemLastEquipped();
object oPC = GetPCItemLastEquippedBy();
//AssignCommand(oPC,SpeakString("Item Equipped!",TALKVOLUME_SILENT_SHOUT));
if ((GetLocalInt(oItem,"Cursed") == 1) || (GetStringRight(GetTag(oItem),6) == "Cursed"))
{
effect eCurse = EffectLinkEffects(EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE),EffectCurse(2,2,2,2,4,2));
ApplyEffectToObject(DURATION_TYPE_PERMANENT,eCurse,oPC);
ApplyEffectToObject(DURATION_TYPE_INSTANT,SupernaturalEffect(EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY)),oPC);
int nSlot = 0;
int nSlotEquipped = -1;
while ((nSlot < 18) && (nSlotEquipped == -1))
{
if (GetItemInSlot(nSlot,oPC) == oItem)
{
nSlotEquipped = nSlot;
}
nSlot++;
}
SetLocalInt(oItem,"InventorySlot",nSlotEquipped);
FloatingTextStringOnCreature(GetName(oPC) + " equipped a cursed item.",oPC);
}
}