Skyrim Special Edition
0 of 0

File information

Last updated

Original upload

Created by

yeeb

Uploaded by

yeebb

Virus scan

Safe to use

10 comments

  1. CurvingFyr3
    CurvingFyr3
    • member
    • 1 kudos
    Double checking just in case, does this framework work for SKSEVR?
  2. tommas666
    tommas666
    • premium
    • 75 kudos
    I do not know how to create SKSE plugins, and do not know if it is possible, but it would be very userfull to be able to see the Magic Effect (MGEF)'s Effect Archetype (Absorb, Banish, Bound Weapon, Cloak, Disarm, Value Modifier, Summon Creature, etc, to name a few).

    For mods like Spell Research it would mean innate compatibility with mod packs, the same with a mod I am making that adds spell backfire. As of now I have created FormLists with separate archetypes, so when a spell has to backfire, I check it against each list and then apply the correct "bad" spell, this is slow, as when I start adding spells from mods the checks can be pretty extensive, even If I only check on lists of the corresponding Magick Scool.

    It is not a request per se, I will be checking how to do this, but there is not much on creating SKSE plugins on internet, and I am not very good at Reverse Engineering.
    1. AlchemicaMateria
      AlchemicaMateria
      • premium
      • 50 kudos
      I know this is a really old post, but in case anyone is interested, Papyrus Extender has GetEffectArchetype functions. This user mentioned using it for a backfire mod, which I also needed and used such a function. People can check out my mod, Unattuned, if they want a spell backfire mod.
    2. tommas666
      tommas666
      • premium
      • 75 kudos
      Yeah, I saw that... I'm back (ish) to modding after a long absence, so I will be implementing this to my Rebound mod xD Just Cast It - Magic Rebound

      thanks for the tip :)
    3. AlchemicaMateria
      AlchemicaMateria
      • premium
      • 50 kudos
      no worries! Your mod was definitely an inspiration for mine
  3. photoshoppro
    photoshoppro
    • member
    • 0 kudos
    Will this mod be updated for AE?
    1. AlchemicaMateria
      AlchemicaMateria
      • premium
      • 50 kudos
      I'm working on adding many of these functions which are not already available from other mods to my mod: Spell Extender
  4. BLACKBERREST3
    BLACKBERREST3
    • supporter
    • 0 kudos
    Just being thorough, but I'm pretty sure this will break in the AE update for 1.6.323 on skse 2.1.3 beta. let me know if anyone has tested this with skse213 or newer builds. The comments on "Simple Obvious Spell Crafting" are indicating that it is not compatible. I will test this later and check back.
  5. Y3sMan
    Y3sMan
    • premium
    • 33 kudos
    This is wonderful! I was hoping to primarily use the delivery type functions, but the descriptions says they are bugged. How so?
  6. Khenta
    Khenta
    • premium
    • 34 kudos
    Good job! If I may request a feature, I think that a function to get the spell's school(s) would be really useful. Currently, I am resolving this with the following:

    `Spell.GetNthEffectMagicEffect(0).GetAssociatedSkill()` which will get you the school of the first magic effect.

    If you could make something where we can get the first instance or an array of all of them, that would be great!