Jump to content

[Papyrus problem] Effect target doesn't work on reanimate spells.


EMPTYd

Recommended Posts

I've made a spell that adds additional coins to a reanimated body. It's called "Desecrate".

The spell's script is very simple, get spell target, then add gold001 to it.

But when I check the ashpile there is simply no change at all, no gold added.

How can I fix this? Is it because I wrote a fault script or because reanimate spell don't work it this way?

 

The script is here:

Scriptname DesecrateCoinScript extends activemagiceffect  

MiscObject Property Gold001  Auto 

Event OnEffectStart(actor akTarget, actor akCaster)
		Actor SpellTarget = akTarget
		SpellTarget.AddItem(Gold001,50,true)
EndEvent

 

 

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...