I added a bunch of new weapons to my game but I don't like their stats, I want to nerf them stats and price wise to iron-silver-steel levels, but there are at least 100 new weaps to go through. Is there a script with TES4edit/CSE to mass copy stats?
I added a bunch of new weapons to my game but I don't like their stats, I want to nerf them stats and price wise to iron-silver-steel levels, but there are at least 100 new weaps to go through. Is there a script with TES4edit/CSE to mass copy stats?
This script in TES5Edit will reduce damage by 50% and price by 10% of weapons
unit UserScript;function Process(e: IInterface): integer;var v: single;begin if Signature(e) <> 'WEAP' then Exit; AddMessage('Processing: ' + Name(e)); v := GetElementNativeValues(e, 'DATA\Damage'); v := v * 0.5; SetElementNativeValues(e, 'DATA\Damage', Round(v)); v := GetElementNativeValues(e, 'DATA\Value'); v := v * 0.9; SetElementNativeValues(e, 'DATA\Value', Round(v));end;end.