Fallout 4

File information

Last updated

Original upload

Created by

Tommy1984

Uploaded by

Tommy1984

Virus scan

Safe to use

Tags for this mod

7 comments

  1. encelor
    encelor
    • supporter
    • 1 kudos
    is there a way to do this with console commands or editing a ini file?
  2. turken
    turken
    • premium
    • 3 kudos
    sorry don't wanna rain on your mod, but just so peeps know, this will conflict with a fix Unofficial Patch did,
    though there is an alternative
    http://www.nexusmods.com/fallout4/mods/12430/?
    1. Tommy1984
      Tommy1984
      • premium
      • 33 kudos
      thank you ... i didn't know there was already a similar mod ... i add this to the description
  3. eddiealcantara
    eddiealcantara
    • member
    • 25 kudos
    Can you do a file where the settlement attacks are increased? with the food/etc tweaks?
    1. Tommy1984
      Tommy1984
      • premium
      • 33 kudos
      How much increase?

      the formula is:

      float attackChance = attackChanceBase + attackChanceResourceMult * (foodRating + waterRating) - attackChanceSafetyMult * safety - attackChancePopulationMult * totalPopulation

      with vanilla settings:

      float attackChance = 0.02 + 0.001 * (foodRating + waterRating) - 0.01 * safety - 0.005 * totalPopulation
    2. eddiealcantara
      eddiealcantara
      • member
      • 25 kudos
      Not sure what all that means lol, but maybe twice as much chance of an attack?
    3. Tommy1984
      Tommy1984
      • premium
      • 33 kudos
      - minimum chance is 2% (attackChanceBase), chance can not be lower than that
      - each unit of water and food increases the chance by 0.1% (attackChanceResourceMult)
      - each unit of safety lowers the chance by 1% (attackChanceSafetyMult)
      - each settler lowers the chance by 0.5% (attackChancePopulationMult)

      ... i look into this later