Papawa92 Posted February 20, 2017 Share Posted February 20, 2017 (edited) I finished the mod here is: http://www.nexusmods.com/skyrimspecialedition/mods/8452/? Hey everyone !Firstly sorry for my english ^^ I would like change npc's level like that: http://img15.hostingpics.net/pics/437842ssss.png I need some reviews, you think it's worth to make a mod like that, or this is will really unbalanced the game ?Do you know, how change these values for all actors ? Like script or something else ? PS: I understand with that, i break all the levelings, encounter zones etc. But it's really frustrating to fight with a simple guard who got useless armor/weapon than you but kick your ass because his level is capped at 20. I make a script for xEdit { Change all NPC's levels to player's level. (work in progress) PC level mult: true Level mult: x1 Min level: 0 Min level: 0 } unit userscript; uses mteFunctions; function Process(e: IInterface): integer; begin if Signature(e) <> 'NPC_' then Exit; SetElementNativeValues(e, 'ACBS\Calc min level', 0); SetElementNativeValues(e, 'ACBS\Calc max level', 0); if GetElementEditValues(e,'ACBS\Template Flags\Use Stats') = '1' then exit; SetElementNativeValues(e, 'ACBS\Flags', GetElementNativeValues(e, 'ACBS\Flags') or 128); SetElementNativeValues(e, 'ACBS\Level Mult', 1000); SetElementNativeValues(e, 'ACBS\Flags', GetElementNativeValues(e, 'ACBS\Flags') or 16); end; end. Edited February 22, 2017 by Papawa92 Link to comment Share on other sites More sharing options...
Recommended Posts