jean7391 Posted June 3 Share Posted June 3 Hey. I'm new to CreationKit, just a few days, and I've changed a lot of things already lol But after a lot of messing around and searching youtube videos and tutorials I gave up trying to create my desired enchantment. What I want is to make my dagger turn me invisible when I hit someone. When I change the weapon to have the invisibility enchantment available in CK it doesn't turn me invisible, I think I have to alter some condition to activate when the weapon hits and to apply the affect on me, but I'm probably doing it wrong? Summermyst mod has this exact enchantment, but it has a bug that puts a filter on screen everytime it is used and it doesn't go away, that's why I'm trying to do my own (and because I want to learn). Can someone help me? Thanks! Link to comment Share on other sites More sharing options...
xkkmEl Posted June 4 Share Posted June 4 (edited) I'm sure there's more than one way to skin that cat. Here's one: Make the effect a script effect, fire and forget, self, no magnitude, duration 1s. Add to it a simple script like so: Script MakeMeInvisibleOnHit extends ActiveMagicEffect Spell property Invisibility Auto event OnEffectStart( Actor akTarget, Actor akCaster) Invisibility.cast( akCaster, akCaster) event Edited June 4 by xkkmEl Link to comment Share on other sites More sharing options...
jean7391 Posted June 4 Author Share Posted June 4 1 hour ago, xkkmEl said: I'm sure there's more than one way to skin that cat. Here's one: Make the effect a script effect, fire and forget, self, no magnitude, duration 1s. Add to it a simple script like so: Script MakeMeInvisibleOnHit extends ActiveMagicEffect Spell property Invisibility Auto event OnEffectStart( Actor akTarget, Actor akCaster) Invisibility.cast( akCaster, akCaster) event Thank you! Now I'm watching youtube videos about scripting hahaha I'll let you know if I'm successful. Link to comment Share on other sites More sharing options...
Recommended Posts