Dasche77 Posted October 15, 2013 Share Posted October 15, 2013 Hello, Im working on a mod for myself and I am having some diffilculty. I want a spell that, upon casting, triggers a remote container to open so that I may store my stuff. I was successful in creating this spell in Oblivion but have been unable to repeat my success in Skyrim. Any help with the script or any suggestions will be appreciated! Thanks Link to comment Share on other sites More sharing options...
IsharaMeradin Posted October 15, 2013 Share Posted October 15, 2013 On your spell affect apply this script Scriptname RemoteContainerOpener Extends ActiveMagicEffect ObjectReference Property RemoteContainer Auto Event OnEffectStart(Actor akTarget, Actor akCaster) Actor Player = Game.GetPlayer() RemoteContainer.Activate(Player) EndEvent Then on the effect form you would highlight the script and click the properties button. Assign the container you want to open to the property RemoteContainer. Link to comment Share on other sites More sharing options...
Dasche77 Posted October 15, 2013 Author Share Posted October 15, 2013 Thank you for your help IsharaMeradin! I only have one remaining problem. How do I Assign the container I want to open to the property RemoteContainer? I have clicked the properties button but I can't seem to figure out how to add it. Link to comment Share on other sites More sharing options...
IsharaMeradin Posted October 15, 2013 Share Posted October 15, 2013 Well first you need to know what container you want to use. You can either select it in the render window or if you know the cell it is in as well as it's reference name you can manually select it in the dialog box that pops up. Link to comment Share on other sites More sharing options...
Recommended Posts