killerkrok555 wrote: ↑Tue Nov 07, 2017 10:19 pm
if i may ask is the error in the tutorial means the game stopping to work?
Yes, the game will stop with an error, backup your save files before adding extra perks is highly recommended.
ReDragonInc wrote: ↑Tue Nov 07, 2017 10:44 pm
Am I doing something wrong? Cuz I've actually followed the picture and I get a crash every time. I change the listend id to where the end of the list would be, I change the amount of maxlength, then edit only to the maxlength. Second I go to fast travel to save, instant crash.
For example:
Let's say if the target uruk has 35 perks(picker properties), the list_maxlength should be 40(8 * 5), and we want to add 3 more perks.
The steps I'd suggest are:
1. Add new perks normally on entry 36/37/38,
2. Find the address of entry 39(the next line of your last perk) and fill it in list_end as it's value(just change it's last few digits), don't touch list_maxlength.
(just change the last few digits should work).
3. Return to the game, quick save, quit, and continue as always.
I mainly use list_maxlength as a reference of the number of limit, and compare it with the current number of perks.
Usually, an error is expected if the number exceeds the limit, say if the list_maxlength=40 and we added perks up to entry 41(the value of list_end should be changed to the address of entry 42).
But the error also extends the value of list_maxlength when the next time we launch the game, then the list_maxlength would become 48(40 + 8) and allowing us adding more perks after.