Jump to content

TUTORIAL: REMOVING UNWANTED MAGIC EFFECTS FROM THE PLAYER


steve40

Recommended Posts

I am having a similar problem, but I couldn't find the particle effect in this thread.

Here are several screenshots of my effect, is really hard to see....I'd say its glowing ash, dripping from my character:

Its similar to the effect dragons have when they die and their skin burns off.

 

http://cloud.steampowered.com/ugc/885232875100934406/0A7E550CD4E162F96982AD6848EF2C01A1FAA389/

http://cloud-2.steampowered.com/ugc/885232875100924736/C53CD6E742B2758D1543CC5932D5CEACB4A4BE55/

http://cloud-2.steampowered.com/ugc/885232875100930244/EC79573D9BA53A6AFB23ACAA033254B29A0A4273/

http://cloud-2.steampowered.com/ugc/885232875100921667/7C0FEF6C1284D8F3451CA61851AAF52B0281ADF9/

 

Can somebody help me identify the effect?

Edited by daleowen5666
Link to comment
Share on other sites

I am having a similar problem, but I couldn't find the particle effect in this thread.

Here are several screenshots of my effect, is really hard to see....I'd say its glowing ash, dripping from my character:

Its similar to the effect dragons have when they die and their skin burns off.

 

http://cloud.steampowered.com/ugc/885232875100934406/0A7E550CD4E162F96982AD6848EF2C01A1FAA389/

http://cloud-2.steampowered.com/ugc/885232875100924736/C53CD6E742B2758D1543CC5932D5CEACB4A4BE55/

http://cloud-2.steampowered.com/ugc/885232875100930244/EC79573D9BA53A6AFB23ACAA033254B29A0A4273/

http://cloud-2.steampowered.com/ugc/885232875100921667/7C0FEF6C1284D8F3451CA61851AAF52B0281ADF9/

 

Can somebody help me identify the effect?

After a little bit or research, I found out that it is not a spell per se. It is an visual effect that is triggered via a script(on the enemies. I have no idea how this effect got stuck on my character).

This however does not get me any nearer to an solution for this.

Link to comment
Share on other sites

Solved it!

I don't know if this is overkill, but it worked for me:

 

- Start Creationkit and open Dragonborn.esm

- Go to Gameplay -> Papyrus Script Manager. Search for "dlc2burtspigganfcscript (the spelling mistakes are intentional)

- Open the script. If it can't be found on your pc, Search it in Skyrim/data/scripts. It has to be somewhere there. When you find it, copy it to Skyrim/data/scripts/source

- At the bottom of the file, you see the function:

Event onDying(actor myKiller)
DLC2BurntSprigganParticlesE.stop(self)
goToState("dead")
EndEvent

 

- Add the line "DLC2BurntSprigganParticlesE.stop(myKiller)

 

-It should look like this:

Event onDying(actor myKiller)

DLC2BurntSprigganParticlesE.stop(myKiller)
DLC2BurntSprigganParticlesE.stop(self)
goToState("dead")
EndEvent

 

-Save the script.

-Go to Gameplay -> Compile papyrus scripts

-Select the script and click "Compile"

 

-Start Skyrim and search for a burnt spriggan. As soon as you kill it, the effect should be gone.

-Be sure that you take the killing blow.

 

It took me several hours to figure this out. I think you can create a new script as well ,insert the command and trigger it however you like.

Link to comment
Share on other sites

Sovngarde hero glow effect link is down please add!

I don't know why that link keeps breaking. The proper links are at the bottom of the post, they both work.

Link to comment
Share on other sites

Solved it!

 

It took me several hours to figure this out. I think you can create a new script as well ,insert the command and trigger it however you like.

 

Good work. I'll zip up and upload the fixed script later for everyone's convenience. Cheers.

Link to comment
Share on other sites

 

http://imageshack.us/a/img199/9593/tesv2013031906511782.jpg

 

http://imageshack.us/a/img195/4318/tesv2013031906512738.jpg

 

To remove "Dragonnbsp;PriestEffect" (Purple smoke and glow eyes on feet)
1. Download my edited script.
2. Put "DragonPriestActorScript.pex" into "/Skyrim/Data/Scripts" overwrite the file if you need
3. Launch Skyrim and load your save file.
4. Press "`" Key to open the console.
5. Type "player.addspell 9BCCA" and press the enter / return key.
6. Press "`" key to close the console and press again to open it up.
7. Type "player.removespell 9BCCA" and press the enter / return key.
8. Close the console
9. Done!
About the script, I just add some lines which remove effects when the script end. so It will notaffectto the game. But If you want keep the script as clean, backup the original and revert it again.
-- Scripts what I add --
;DragonPriestActorScript
;enpinion edit
EVENT OnEffectFinish(Actor Target, Actor Caster)
selfRef.unequipitem(DragonPriestArmor01)
DragonPriestEyeGlowFX.Stop(selfRef)
DragonPriestParticlesFX.Stop(selfRef)
ENDEVENT
edit : Images.

 

Thank you so much for this post, it's been a very long time since I last tried removing the effect, mine had the Glowing Eyes on the Feet. Your script worked!

 

This was my old post at page 3 regarding the effect.

This is post for the quoted fix above at page 13.

 

I'll report back here it it reappears.

 

Again, a million thanks to you enpinion :biggrin:

And also, thanks again to steve40 for this thread.

;D ;D ;D

Edited by galagast
Link to comment
Share on other sites

Yeah that fix is already listed on the first page (post #9). Good to know it worked!

It's still a mystery why/how the visual effects of an NPC are getting unintentionally cast onto the player, though!

Link to comment
Share on other sites

  • Recently Browsing   0 members

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