Very cool! (AllowEngineDoubling=0 that is...)
Any ideas on how to do this easily from an installer (NSIS or SFX/batch) without overwriting the whole sfc.ini file? I suppose I could figure it it out for myself, but hey why repeat the effort if someone has already figured out how.
I'm also curious about the NSIS installer, I've figured out simple scripts (get installation folder, set output folder, copy a few files...). I'm just using the "File" command but is there a way to drop in whole folders? I have a huge mod I'm working on and would rather use NSIS than the self exctracting rar (which runs a batch on completion) I am using now, but I would rather not have to make hundreds (thousands?) of "File" lines in my NSIS script...
Ah, scratch that second question, I just found the answer - use the /r switch on the "File" command! I also just figured out how to run a batch or other extrernal executable during the NSIS install (Exec, ExecShell or ExecWait), as well as the CreateShortCut command, too cool.
Oops, scratch the first question too! The NSIS command "WriteINIStr" will do the trick! That NSIS installer is just dandy!
Duh, I guess the answer to my questions was: RTFMS! ...now I have a bunch of work to do...