Open the scripting window and select Script Type: 'magic effect' from
the drop down list near the top of the window.
CODE
scn BoundArenaRaimentHeavy
Begin scripteffectstart
player.additem ArenaRaimentHeavy 1
player.equipitem ArenaRaimentHeavy 1 ; (if you don't put the '1' the item will be unequipable by the player while effect is active and visa versa)
end
Begin scripteffectfinish
player.unequipitem ArenaRaimentHeavy 1
player.removeitem ArenaRaimentHeavy 1
end
(Obviously just change where it says 'ArenaRaimentHeavy' to the object ID of the Armor you actually want and just add in more
lines of 'player.additem' etc. if you want to add more items to the spell)
Save the script and go to "spells" in the object window.
Create a new spell.
Tick the 'Script Effect Always Applies' box
Add new effect:
---Effect: Script Effect
---Range: Self
---Duration: (in seconds)
Script Effect info:
---Script: Select the script you just created
---Effect name: (name)
---School: (probably cunjuration, but its up to you)
---Visual Effect: (probably bound cuirass, but again its up to you)
---Un-tick 'Effect is Hostile' box (not sure if it makes a huge difference as you casting it on yourself anyway).
Save Effect.
Un-tick the 'Auto-Calculate' box at the bottom of the spell window and then select the level and cost of the spell.
Save your spell.
How you want to give yourself the spell in the game is up to you but this will create it.
If you want to change the scripting at all this link should help.
http://cs.elderscrolls.com/constwiki/index...egory:FunctionsI hope this helps.