Jump to content

Change Soul Trap Message


liamofearth

Recommended Posts

I'm not new to programming - but I am certainly new to this community and the creation kit. It's been fun learning; great community and resources! The reason I started (attempting) modding was because I thought the 'Soul Captured!' notice is not very helpful. I want it to be slightly more informative and to include soul size and what size soul gem it was placed in. It seems that the function that does the trapping, Caster.TrapSoul(), is being used in the Papyrus script 'magicsoultrapfxscript' inside of the magic effect 'SoulTrapFFActor'. How do I access the script Caster.TrapSoul()? Am I looking at the right function & effect? Any help is welcome as well.

Link to comment
Share on other sites

Thank you both - I was able to at least get the lvl of the target using GetLevel() in the effect script 'magicsoultrapfxscript'. I will check out xEdit - sounded like a text editor - but looks like it's much more than that! My next step - which sounds like xEdit can help with is the soul gem that it was placed into.

 

 

if DeadAlready == False
    if Caster.TrapSoul(victim) == true
        Debug.Notification("Target was lvl " + victim.GetLevel() + "")
        trace(victim + " is, in fact, dead.  Play soul trap visFX")
        TrapSoundFX.play(Caster)       ; play TrapSoundFX sound from player
        TrapImod.apply()                                  ; apply isMod at full strength
        TargetVFX.Play(victim,4.7,Caster)              ; Play TargetVFX and aim them at the player
        CasterVFX.Play(Caster,5.9,victim)
        TargetFXS.Play(victim,2)     ; Play Effect Shaders
        CasterFXS.Play(Caster,3)
    else
Edited by liamofearth
Link to comment
Share on other sites

This is Xedit, it's given the X designation because it can be used for SkyrimSE, (called SSEEdit), Skyrim, Fallout4 (called FO4Edit), Fallout New Vegas, Fallout 3 etc

 

Very handy for making changes in the game, and there's some really helpful and powerful scripts to make things even easier.

 

SSEedit

 

IsharaMeradin has all the links!

Link to comment
Share on other sites

  • Recently Browsing   0 members

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