dreadflopp Posted January 16, 2017 Posted January 16, 2017 I've been trying to unlevel the leveled lists using at-quickchange by setting all levels to 1. I've been unsuccessful, is this possible and if so how?
0 Mator Posted January 16, 2017 Posted January 16, 2017 (edited) QuickChange can't do this I don't think. You need a specific script which will loop through the leveled lists. unit UserScript; function Process(e: IInterface): Integer; var entries, entry: IInterface; i: Integer; begin if Signature(e) <> 'LVLI' then exit; entries := ElementByPath(e, 'Leveled List Entries'); for i := 0 to Pred(ElementCount(entries)) do begin entry := ElementByIndex(entries, i); SetElementEditValues(entry, 'LVLO\Level', '1'); end; end; end. I think that should do the trick. Will test...EDIT: Tweaked and working. Edited January 16, 2017 by Mator
0 dreadflopp Posted January 16, 2017 Author Posted January 16, 2017 Thanks Mator, you're the best! Saved me a lot of time!
0 dunc001 Posted January 17, 2017 Posted January 17, 2017 Out of interest what is your thinking behind delevelling everything in this manner?
0 dreadflopp Posted January 17, 2017 Author Posted January 17, 2017 (edited) I'm removing most high level items from the leveled list, similar like morrowloot does. I'm leaving some lists, like merchants, untouched. I'm then adding a copy of the original list as a new leveled list and adds it as a sublist to the list that had high level loot removed. This way the chance of getting high level loot is greatly reduced without cluttering the original lists with copies of iron and steel entries. Dragonbone items are completely removed from my new sublists, daedric are left in some lists with the chance of finding it greatly reduced. Finally I'm probably going to delevel everything, add some skill requirements for using weapons and armours and lower the global chance of finding items. What functions I'll incorporate depends on if it's easy to do and if one might just as well use other mods to reach the same result. I'll release it on Nexus or Dropbox for anyone to use however they like. My motivation is doing something like YASH or Morrowloot but very light weight and basic. I'm sacrificing functionality to make it as conflict free as possible. Hopefully a bashed patch will solve all conflicts. Sent from my Nexus 6P using Tapatalk Edited January 17, 2017 by dreadflopp
Question
dreadflopp
I've been trying to unlevel the leveled lists using at-quickchange by setting all levels to 1. I've been unsuccessful, is this possible and if so how?
4 answers to this question
Recommended Posts