hi
i was wondering how you changed you loyality with nature and technology. i was trying to edit all files with hex editor but i don't know which one it is. can you please tell me which file you changed, what line and how. thank you.
Back up first your save game before you try to modify it.
1. Start your hex editor, open *.plr file in your save directory.
2. Find hex value of your character loyalty
(find text string ‘Alignement_Techno’ and ‘Alignement_Nature’ as a guide).
It will look like:
00 00 ## ## ED ED ED ED
where the ## ## is the encrypted version of your value
example: my character have loyalty: technology 20%, the hex value;
Alignement_Techno : 00 00 A0 41 ED ED ED ED
Alignement_Nature : 00 00 A0 C1 ED ED ED ED
3. To make loyalty: technology 100%, set the value like this,
Alignement_Techno : 00 00 C8 42 ED ED ED ED
Alignement_Nature : 00 00 C8 C2 ED ED ED ED
4. To make loyalty: nature 100%, set the hex value,
Alignement_Techno : 00 00 C8 C2 ED ED ED ED
Alignement_Nature : 00 00 C8 42 ED ED ED ED
Don’t forget to save your work.