Jump to content

Enchantment that makes the user invisible when they hit


Recommended Posts

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

Posted (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 by xkkmEl
Link to comment
Share on other sites

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

  • Recently Browsing   0 members

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