Oblivion

File information

Last updated

Original upload

Created by

MikePowell

Uploaded by

MikePowell

Virus scan

Safe to use

Tags for this mod

18 comments

  1. IvanSeyller
    IvanSeyller
    • supporter
    • 0 kudos
    Sectumsempra Please!
    1. jhspencer
      jhspencer
      • member
      • 1 kudos
      Exactly! All these mods don't have it, and it's like the coolest spell in the whole franchise. However, I found a way to create it myself. Simply create a spell that drains health about 40 points each second for 20 seconds. And if that's too powerful, do drain health 30 for 10 seconds.
  2. janno538
    janno538
    • member
    • 0 kudos
    No flipendo???
  3. simon62821
    simon62821
    • member
    • 0 kudos
    Great mod, but it sucks I can't use 'em. I'm not a full out mage, mostly marksman, so I dont have the requirements for ANY of them. So ya, try to lower down the requirments or something. But otherwise, good job!
  4. Pokegami
    Pokegami
    • member
    • 3 kudos
    Um, Telekinesis is Wingardium Leviosa. And Avada Kedavra should actually be a kill script effect, not a damage 500 health one.
  5. King Rick
    King Rick
    • member
    • 3 kudos
    Now this is a mod I just HAVE to try out.


    By the way, Caprinus mentioned using the visuals of illusion magic to make Avada kedavra green but you can also make that happen when using a paralyze effect first. What I did until I discovered this mod was a series of effects in this order: Paralyze, frost damage, fire damage and shock damage. All these effects at their maximum except the area effect which remained at 0. You can be pretty sure to get a LOT of instant kills with that and the spell is coloured green as well. Nice, huh? ;p
  6. Caprinus
    Caprinus
    • member
    • 8 kudos
    Oh, by the way, Finite Incantatem should be Dispel, rather than Spell Absorption, no?
  7. Caprinus
    Caprinus
    • member
    • 8 kudos
    To start things off, here's a quick script that makes the target give pained noises for its duration.


    scriptname hpCrucioScript

    ref self
    float cryDelay

    begin ScriptEffectStart

    set self to GetSelf
    set cryDelay to ( self.say hit )

    end

    begin ScriptEffectUpdate

    set cryDelay to cryDelay - GetSecondsPassed
    if ( cryDelay < 0 )
    set cryDelay to ( self.say hit )
    endif

    end
  8. Caprinus
    Caprinus
    • member
    • 8 kudos

    one tip about the crucio spell: there's a script effect standard in the game (if you have Shivering isles at least but almost evryone has) that's called SE05HendirTortureSpellScript which might make that better ...

    Hmm, I tried that script but all it did was make the target grunt once.
    Edit - after looking at the script in the construction set, I don't think it's a good fit at all. It seems to be designed for use specifically on a particular NPC. I'd recommend writing a new script for this purpose instead.
  9. Caprinus
    Caprinus
    • member
    • 8 kudos
    By the way, if you want Avada Kedavra to be green like it should, here's how:
    Replace the Damage Health effect with a script effect.
    In the "Visual Effect" dropdown, choose an illusion-type effect like Light; those are always green.
    Note that Visual Effect is independent of the School selection; Avada Kedavra should of course be Destruction. Remember to check "Effect is Hostile".

    Here's a simple "kill" script. Choose "Magic Effect" from the Script Type dropdown.

    scriptname hpKillingCurse

    ref self

    begin ScriptEffectStart

    set self to GetSelf
    self.kill

    end
  10. Darkpyro1337
    Darkpyro1337
    • member
    • 0 kudos
    Hey, where do you find the spells?