Fallout 4
0 of 0

File information

Last updated

Original upload

Created by

jb2k1

Uploaded by

jb2k1

Virus scan

Safe to use

Tags for this mod

About this mod

Fixes idiot savant rank 3 from disabling the 5x bonus xp when crafting and building.

Requirements
Permissions and credits
Translations
  • Spanish
Changelogs
Problem:
  • Idiot savant rank 3 gives (3x kill xp) for 60 seconds.
  • Normally the (3x kill xp) will trigger any time you trigger the 5x idiot savant bonus xp.
  • The (3x kill xp) stops the 5x idiot savant bonus xp from triggering while crafting, building, etc for 60 seconds.
  • Rank 2 and 3 are both active and rank 3 gives no bonus XP.

My fix:
  • Fixes idiot savant rank 3 so that (3x kill xp) will only trigger when you trigger the 5x idiot savant bonus xp while in combat or while your weapon is drawn.
  • Fixes idiot savant rank 2 not checking if you had rank 3.
  • Adds (idiot savant killing spree) perk to the perks tab when (3x kill xp) is active.
  • Now you can craft, build, etc and still trigger 5x idiot savant bonus xp, unless (3x kill xp) is active.

Used Unofficial Fallout 4 Patch as base.

Chance to trigger:
INT <= 1 (10%)
INT == 2 (9%)
...
INT == 9 (2%)
INT >= 10 (1%)

Changed IdiotSavantScript.psc


From:
if akOwner.HasPerk(IdiotSavant03) == true
IdiotSavantXPBoostSpell.cast(akOwner)
endif


To:
if akOwner.HasPerk(IdiotSavant03) == true
if akOwner.IsInCombat() == true
IdiotSavantXPBoostSpell.cast(akOwner)
elseif akOwner.IsWeaponDrawn() == true
IdiotSavantXPBoostSpell.cast(akOwner)
endif
endif


My first mod. Please let me know if you find any bugs or have any ideas on how to improve it.
Always backup your save before installing any mod.