File information

Last updated

Original upload

Created by

YanL

Uploaded by

YanL

Virus scan

Safe to use

253 comments

  1. YanL
    YanL
    • premium
    • 326 kudos
    Locked
    Sticky
    What is your favorite armor? :D

    Also, there is a file called "PowerToTheBull - LEGIONPAs.esp". My bad, you can ignore that.
  2. SZ818
    SZ818
    • member
    • 8 kudos
    Oh interesting, it might be easy to integrate into TTW by injecting the armors into a leveled list via Script Runner, this is a great job indeed for raider variety
    1. SZ818
      SZ818
      • member
      • 8 kudos
      Alright, I did give it a try, Fo3/TTW lists for Raider armors aren't as clear as NVs and maybe this script could use further refinement. But it works.

      Instructions:

      • Save the text below as gr_NightmareFiends.txt
      • Place inside data/NVSE/Plugins/Scripts/
      • Run the game, if you did it correctly you should see the messages in the console in the main menu, you might need to scroll up if you have too many mods printing the console.
       
      Notes:

      • Uses  JIP LN NVSE
      • It works with and without TTW
      • Changes are made on the fly, so even if another mod touches leveled lists, it will still work.
      • A quick explanation: Basically makes the same edit the ESP does with a plus, Instead of completely removing base Riders/Fiends armors, they are put inside the mod's armor list, so raiders and fiends still spawn with them every now and then instead of being completely removed.
      • If author desires so, he can remove the actual edits from the base forms, leaving the ESP with unique forms only.

      And a note of warning: While it might be safe to install and uninstall midway through, the leveled list changes may or may not persist in your save file, this is true for an old GECK function which is very similar, i am not sure if this carries over to NVSE and JIP functions.

      Print "Nightmare Fiends: JIP NVSE Script"

      ; - NVSE detects Nightmare Fiends mod active -

      if IsModLoaded "NightmareFiends.esp" == 1

      Print "Nightmare Fiends: Loaded"

      LeveledListAddForm Fiend1ArmorComplete AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm Fiend2ArmorComplete AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm Fiend3ArmorComplete AAAFiendAllArmorsList 1 1 0.0

      LeveledListRemoveForm Fiend1ArmorComplete Raider1ArmorAll
      LeveledListRemoveForm Fiend2ArmorComplete Raider2ArmorAll
      LeveledListRemoveForm Fiend3ArmorComplete Raider3ArmorAll

      LeveledListAddForm LootArmorFiend1ArmorAll AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm LootArmorFiend2ArmorAll AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm LootArmorFiend3ArmorAll AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm LootArmorFiendArmorAll AAAFiendAllArmorsList 1 1 0.0

      LeveledListRemoveForm LootArmorFiend1ArmorAll CondRaider1Armor01
      LeveledListRemoveForm LootArmorFiend1ArmorAll CondRaider1Armor02
      LeveledListRemoveForm LootArmorFiend1ArmorAll CondRaider1Armor03
      LeveledListRemoveForm LootArmorFiend1ArmorAll CondRaider1Armor04

      LeveledListRemoveForm LootArmorFiend2ArmorAll CondRaider2Armor01
      LeveledListRemoveForm LootArmorFiend2ArmorAll CondRaider2Armor02
      LeveledListRemoveForm LootArmorFiend2ArmorAll CondRaider2Armor03
      LeveledListRemoveForm LootArmorFiend2ArmorAll CondRaider2Armor04

      LeveledListRemoveForm LootArmorFiend3ArmorAll CondRaider3Armor01
      LeveledListRemoveForm LootArmorFiend3ArmorAll CondRaider3Armor02
      LeveledListRemoveForm LootArmorFiend3ArmorAll CondRaider3Armor03
      LeveledListRemoveForm LootArmorFiend3ArmorAll CondRaider3Armor04

      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider1Armor01
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider1Armor02
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider1Armor03
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider1Armor04
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider2Armor01
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider2Armor02
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider2Armor03
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider2Armor04
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider3Armor01
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider3Armor02
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider3Armor03
      LeveledListRemoveForm LootArmorFiendArmorAll CondRaider3Armor04

      LeveledListAddForm AAAFiendAllArmorsList Raider1ArmorAll 1 1 0.0
      LeveledListAddForm AAAFiendAllArmorsList Raider2ArmorAll 1 1 0.0
      LeveledListAddForm AAAFiendAllArmorsList Raider3ArmorAll 1 1 0.0

      ; - NVSE detects Tale of Two Wastelands mod active -

      if IsModLoaded "TaleOfTwoWastelands.esm" == 1

      Print "Nightmare Fiends: TTW detected"

      LeveledListAddForm ArmorRaiderTier0 AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm ArmorRaiderTier1 AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm ArmorRaiderTier2 AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm ArmorRaiderTier3 AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm ArmorRaiderTier4 AAAFiendAllArmorsList 1 1 0.0

      LeveledListRemoveForm ArmorRaiderTier0 LootRaiderCombined
      LeveledListRemoveForm ArmorRaiderTier1 LootRaiderCombined
      LeveledListRemoveForm ArmorRaiderTier2 LootRaiderCombined
      LeveledListRemoveForm ArmorRaiderTier3 LootRaiderCombined
      LeveledListRemoveForm ArmorRaiderTier3 LootRaiderMetalCombined
      LeveledListRemoveForm ArmorRaiderTier4 LootRaiderCombined
      LeveledListRemoveForm ArmorRaiderTier4 LootRaiderMetalReinforcedCombined

      LeveledListAddForm AAAFiendAllArmorsList LootRaiderMetalCombined 1 1 0.0
      LeveledListAddForm AAAFiendAllArmorsList LootRaiderMetalReinforcedCombined 1 1 0.0

      LeveledListAddForm LootRaiderArmor AAAFiendAllArmorsList 1 1 0.0
      LeveledListAddForm LootRaiderCombined AAAFiendAllArmorsList 1 1 0.0

      endif
      endif

      ; IsModLoaded check is necessary to prevent errors if the mod is not properly uninstalled.
    2. bct18181
      bct18181
      • premium
      • 30 kudos
      props to you!
    3. wasdwasd12
      wasdwasd12
      • member
      • 3 kudos
      Excuse me coudl you upload this change as a mod??
    4. GeorgeCorbul
      GeorgeCorbul
      • member
      • 15 kudos
      I second this.
    5. YanL
      YanL
      • premium
      • 326 kudos
      me too :D
    6. SZ818
      SZ818
      • member
      • 8 kudos
      Author can upload it as an optional download for his mod. I didn't add anything that could be considered of my creation. Sorry for the late reply, i'm just coming back again to NV modding. The armors are very enjoyable in game.
    7. wasdwasd12
      wasdwasd12
      • member
      • 3 kudos
      hey man long time no see I still think you should upload this as a optional mod, if it will help i will ask the mod creator if you got his permission :D

      it just stuff like level list can be hard for most people to figure out i know for the love of pete i have troubles with scripts >W<


      Just will you think on it my friend :D
    8. thedud3offallout
      thedud3offallout
      • member
      • 0 kudos
      upload it
    9. SZ818
      SZ818
      • member
      • 8 kudos
      anyone can upload it though. it doesn't require maintenance unless something significant or new is made to the mod.
  3. MrHouseEnthusiast
    MrHouseEnthusiast
    • member
    • 3 kudos
    Now I'm actually scared of fiends now! Great job.
    1. MrHouseEnthusiast
      MrHouseEnthusiast
      • member
      • 3 kudos
      Sorry for the two "now"s
    2. SloadSorcerer
      SloadSorcerer
      • member
      • 0 kudos
      I forgive you.
    3. Ajiqmukiz
      Ajiqmukiz
      • member
      • 2 kudos
      i won't forgive
    4. MrHouseEnthusiast
      MrHouseEnthusiast
      • member
      • 3 kudos
      Forgive me!
    5. mods put this degenerate on a cross
  4. Boosh5000
    Boosh5000
    • member
    • 0 kudos
    Is there a Fiend faction armor disguise mod that works with this mod?
  5. Trololo5677
    Trololo5677
    • member
    • 0 kudos
    The mod's really awesome, endorsed! There's a thing I don't really like tho, it's anarchist armor's symbol glowing. Is there a version without the glowby the chance or, uh, at least a way to exclude that armor? I'm not really familiar with that all, tried removing its meshes and textures, didn't expect it to actually help and, well, it didn't
    1. YanL
      YanL
      • premium
      • 326 kudos
      You can open the armor in nifskope, select the "A" block and delete:)
  6. OddlySenpai
    OddlySenpai
    • supporter
    • 0 kudos
    So I'm having this issue where entering Fiend Territory causes heavy stutter then CTD, at first I assumed it was some other mod but after disabling this mod, I find that the area is now not buggy. Idk if it's because of a Mod conflict, if you might  know of any.
    1. YanL
      YanL
      • premium
      • 326 kudos
      Sorry about that, maybe is because those armors uses lots of textures. Better not use this mod :c
    2. OddlySenpai
      OddlySenpai
      • supporter
      • 0 kudos
      I think I figured it out! I think it was conflicting with some texture pack mods like Ojo Bueno or NMC, either way I'd uninstalled those since they were already causing problems to begin with, and now the Fiends Territory is better. Still some stutter but nothing major!
    3. YanL
      YanL
      • premium
      • 326 kudos
      awesome :D
    4. Axijiku
      Axijiku
      • supporter
      • 0 kudos
      I haven't been having CTDs but seems like there's a good amount of lag in fiend territory, not sure if it's necessarily this mods fault though.
    5. OQXC337
      OQXC337
      • supporter
      • 0 kudos
      Was having the exact same problem just now, disabling NMC fixed it, thanks!
  7. Gogahawx
    Gogahawx
    • member
    • 0 kudos
    можете не отвечать, промахнулся с модом)
  8. Grifman
    Grifman
    • member
    • 14 kudos
    Why are there two esp's?  One says "PowertotheBull - LegionPA".  What is that?
    1. Lioness446
      Lioness446
      • member
      • 5 kudos
      Took the words out of my mouth. I am suspicious (keep in mind I am a very paranoid person)
    2. lostintime
      lostintime
      • supporter
      • 0 kudos
      From the first pinned post:

      Also, there is a file called "PowerToTheBull - LEGIONPAs.esp". My bad, you can ignore that.

      Saw the ESP was confused myself
    3. BiteOf1987
      BiteOf1987
      • premium
      • 5 kudos
      It's simply a Power Armor mod for the Legion. The armor can be found in the Legion Safe House. I recommend installing the "Titans Of The New West" mod and the patch for these Legion power armors so they can better replicate to what power armor was like in Fallout 1 and 2. Webb has the patch files for TOTNW.
  9. drcawks
    drcawks
    • member
    • 0 kudos
    Deathrow f*#@ing rocks
  10. timooonx3
    timooonx3
    • member
    • 0 kudos
    Now, this looks cool, but it doesnt seem to be working for me, as in none of the armors are spawning on the fiends, i dont know if it is because i use spice of life mod, that needs one out of three body mods, might that be it? if anyone knows for sure please let me know! thanks in advance.
  11. deleted6712892
    deleted6712892
    • account closed
    • 0 kudos
    Craazy fiends