jean7391 Posted June 3, 2024 Posted June 3, 2024 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!
Qvorvm Posted June 4, 2024 Posted June 4, 2024 (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, 2024 by xkkmEl
jean7391 Posted June 4, 2024 Author Posted June 4, 2024 On 6/4/2024 at 1:50 AM, 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 Expand Thank you! Now I'm watching youtube videos about scripting hahaha I'll let you know if I'm successful.
HurricainReaperProductions Posted January 27 Posted January 27 Very late reply make the invis spell a constant effect ability then go to perks creat a new effect in the option to the right use the dropdown box choose on hit effect choose your invis ability and then create an enchantment like a normal and apply the perk in the section of the invis magic effect perk to apply dropdown box
Recommended Posts