Thanks for posting this. I am trying to use it for intended purpose. The instructions are hard to follow.
The following would make this much more useful, I think I'm going to go to the original mods:
a full complete list of parameters in one list, they are peppered through the document and I think they are not all described
a decompile example similar to the compile example
its not clear how to use the 6 special variables and what happens when your game is say on the D: drive
its clear you have to pass your game folder if it is not standard, however that doesn't work according to the instructions. --game throws and error that default game folder not found but --gameroot works. In the readme it says g, game, or gameroot can be used.
Yeah, I am not super experienced in the field of documentation-- only a junior developer, but I am always trying to improve! So thank you for the feedback. I was trying to be as descriptive as possible, but it may have just become a word dump!
The special variables are used literally as they appear "${GAMEROOT}/Data" for the Data folder for example. My parser is just using a Regular Expression to find/replace these patterns so "${GAMEROOT}" will expand to "C:\Program Files (x86)\Steam\steamapps\common\Starfield" in the final string (assuming the default location)
For the "--game" param, I think it may be a file issue on the Nexus side / my upload not going through properly. I did fix that issue somewhat recently and it seems to be working on my machine (classic dev comment, I know lol). I'll test it a bit more and get back to you
4 comments
The following would make this much more useful, I think I'm going to go to the original mods:
Yeah, I am not super experienced in the field of documentation-- only a junior developer, but I am always trying to improve! So thank you for the feedback. I was trying to be as descriptive as possible, but it may have just become a word dump!
The special variables are used literally as they appear "${GAMEROOT}/Data" for the Data folder for example. My parser is just using a Regular Expression to find/replace these patterns so "${GAMEROOT}" will expand to "C:\Program Files (x86)\Steam\steamapps\common\Starfield" in the final string (assuming the default location)
For the "--game" param, I think it may be a file issue on the Nexus side / my upload not going through properly. I did fix that issue somewhat recently and it seems to be working on my machine (classic dev comment, I know lol). I'll test it a bit more and get back to you
Edit | Hotfix (v1.2.1):