Skyrim Special Edition
0 of 0

File information

Last updated

Original upload

Created by

Noxcrab

Uploaded by

Noxcrab

Virus scan

Safe to use

Tags for this mod

105 comments

  1. Noxcrab
    Noxcrab
    • premium
    • 52 kudos
    Locked
    Sticky
    Install proper versions for your Requiem version.
  2. Anskor
    Anskor
    • premium
    • 2 kudos
    Where can we see our Hunting rank? Also, I suppose this wouldn't be compatible with Jayserpa's hunting mod?
    1. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      You can just check 'Animals Killed' statistics - 150+ is level 2, 300+ is level 3.
      It's not compatible with Simple Hunting. I think I'll just drop the mod tbh.
  3. Chronikzz
    Chronikzz
    • premium
    • 0 kudos
    I may be being dumb, but I've installed this mod (birthsigns redone) into the Wildlander modlist, and the mod doesn't appear to be doing anything. The description appears in the active effects panel, but my magicka and regen rates seem to be the same. 

    Does anyone have any experience with this list and this mod specifically?
    1. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      Wildlander uses older version of Requiem that does not have the magic effects used by Birthsigns Redone.
  4. Sasquatch678
    Sasquatch678
    • premium
    • 27 kudos
    Is it possible to hide the poison throwing knives power unless throwing knives are in the players inventory?
    1. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      That can result in the power being un-favorited (hotkey) when running out of throwing knives, so I don't really want to do that...
    2. Sasquatch678
      Sasquatch678
      • premium
      • 27 kudos
      If I wanted to give it a crack myself, would I need to tweak the scripts or could it be done via adding conditions in xedit?
    3. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      You'll have to script it. I don't think the conditions on spell/magic effect can make them disappear, but might be worth a try?
  5. Codsniperz04
    Codsniperz04
    • member
    • 0 kudos
    Am I doing something wrong here? I cannot find Faith perk in the Restoration Tree and only Painful Regrets. 
    1. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      Should be load order issue with some other mod overwriting Restoration skill tree.
    2. Codsniperz04
      Codsniperz04
      • member
      • 0 kudos
      I removed special feats mod, and I got the Faith 0/3 and Cultism 0/3 appear on the skill tree. Maybe the Special Feats is overriding Blessings Redone? I had Blessings Redone also on my highest priority, as well as the other patches for each mods..  
    3. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      I assume 'highest priority' means the plugin (esp) is loaded below others?
      You should have Requiem - BR Magic Redone Special Feats Patch.esp below all BR/MR/SF patches.
    4. Codsniperz04
      Codsniperz04
      • member
      • 0 kudos
      ok that seems to work, I just have to manually drag the patch everytime I run LOOT xD
      I have BR and SF working alongside each other.
      Thank you! 
  6. MaiqTellstheTruth1
    MaiqTellstheTruth1
    • supporter
    • 1 kudos
    Would it be possible to de-couple WAR from Fozar's Patch? Let's just say that mod is.. overzealous, with how it handles things. I really want WAR for its fix on unarmed combat but that hard requirement of Fozar is making me think twice.
    1. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      I use Fozar's patch myself (using some of its resources), and WAR also functions as an partial update for Fozar's patch, so I'm not really motivated to work on that...
  7. BrandoNex
    BrandoNex
    • member
    • 0 kudos
    Blessing of Zenithar isn't giving me smithing skill. I get the speech skilljust fine , so not sure what's up. I do have all three ranks of faith.

    Fantastic collection, by the way! I agree with so many changes you've made, and I've been adding more and more of your modules. Thanks a lot!
    1. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      Fixed in 0.2.2.
  8. IamPrettyUgly
    IamPrettyUgly
    • member
    • 1 kudos
    "Nox_WAR_ThrowingKnife_PoisonApply.psc" Line 31

    if (akBaseItem as Potion).IsPoison()
    When akbaseitem is not a poison(which is 99% of the time), the cast will be return a none and calling ispoison() on a none object will generate a Papyrus error. The cast should be evaluated first and if not none, call the function.

    Also, why don't you join thetrader and help develop Requiem directly? Your ideas are terrific and would tremendously improve the mod.
    1. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      Reason for using GetEquippedObject(0/1) is because I need to register stamina cost trigger for each hand separately. Perhaps putting the block in 'If(akBaseObject as Scroll)' for initial check would be error-free?

      For the potion, I do like this, then? :
      if(akBaseItem as Potion)
        if(akBaseItem.IsPoison() && ~~~)

      I do give Manuel (aka TheTrader) some ideas and feedback in the discord server. Some of the features in older version of WAR were integrated into base Requiem.
    2. IamPrettyUgly
      IamPrettyUgly
      • member
      • 1 kudos
      Some of the features in older version of WAR were integrated into base Requiem.
      That is good to know. I hope many more get integrated in future :)

      ...for each hand separately...
      I had to go back and look again, indeed, they're different registrations "MRh" and "MLh" I totally missed that. In that case yeah, it will be simpler to keep your code, just put it inside an If (akBaseObject) ..code.. EndIf


      For the potion..
      Yes. Even better, assign the cast to a local var and use that wherever is needed:
      Potion venom = akbaseitem as potion
          
      if (venom && venom.IsPoison() && akDestContainer == PoisonContainer)
      ...
      This works because conditions don't get evaluated if the preceding one is false. i.e  if (a && b && c) b is evaluated only if a is true, c is evaluated only if a and b are true. Doing it this way is less work than typing if (a) if (b) if (c) endif endif endif but they're technically the same thing.
    3. afternun0123
      afternun0123
      • member
      • 24 kudos
      I recommend using AddInventoryEventFilter.
      https://ck.uesp.net/wiki/AddInventoryEventFilter_-_ObjectReference

      You can only receive OnItemRemoved event from Throwing Knifes.
  9. LyghxBS
    LyghxBS
    • supporter
    • 3 kudos
    I wish Weapons and Armor Redone didn't require Fozar's Dragonborn patch. That mod is hilariously difficult and doesn't make sense from a roleplaying perspective.
  10. Teayetagain
    Teayetagain
    • supporter
    • 0 kudos
    Hey, love all the mods you make. Quick question, with ur magic redone mod in restoration, the 75 holy dmg perk mentions Sun spells doing half dmg to the non undead now, if I run Auriel "Rank 3 : Sun spells do half the damage to non-undead" ontop. Am I doing full dmg to non undead now or how does the math work out?
    1. Noxcrab
      Noxcrab
      • premium
      • 52 kudos
      You will be doing full damage (50% + 50% = 100%) to non-undead with both perks.
  11. IamPrettyUgly
    IamPrettyUgly
    • member
    • 1 kudos
    Event OnObjectEquipped Nox_WAR_Quest.psc line 44:
    if(Player.GetEquippedObject(0).HasKeyword(ThrowingKnifeKW))
    GetEquippedObject will return none if the player equips armor without having a weapon on left or right hand, generating a papyrus error.

    Making use of the passed form will be better in this case, and will allow to eliminate code duplication.
    if(akBaseObject.HasKeyword(ThrowingKnifeKW))
        RegisterForAnimationEvent(Player, "MLh_SpellFire_Event")
    endif