Jump to content

UnequipAll....


KkaosReinz

Recommended Posts

Greetings all, noob to the creation kit here, I'm working on a spell that would un-equip all gear and fear the target. I've got the fear part down, and I know there's a disarm effect, but is there an un-equip all effect? or is that something I can make?

 

Thanks in advance,

 

~ Kk

Link to comment
Share on other sites

is there an un-equip all effect?

SKSE might have one or they might be planning to make one

 

or is that something I can make?

 

You should be able to script a workaround.

Things you would need:

1.A custom container that you can stash out of sight in an empty cell

2.A script for your magic effect that uses RemoveAllItems to move the targets inventory to and from your custom container.

Link to comment
Share on other sites

Just write a small script that uses the "UnequipAll" papyrus function, and attach it to the spell's magicEffect. :thumbsup:

 

Scriptname FearSpell extends ActiveMagicEffect

Event OnEffectStart(Actor akTarget, Actor akCaster)

aktarget.UnequipAll()	

EndEvent

Edited by steve40
Link to comment
Share on other sites

  • Recently Browsing   0 members

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