RE_Kenshi dev here: If you have crashes or experience bugs, either use the in-game bug/crash reporter (accessible via the RE_Kenshi settings menu) or message me on Discord (my contact info is in the readme) so I can track it down and fix it. Also check the "bugs" tab on Nexus to see if anyone else has reported a similar issue. Post any extra info you might have there. Cheers, and have fun!
You can change the keybinds in Kenshi's regular settings menu (albeit they will have the same names as in vanilla, so "faster game speed" means decrease speed, "fastest game speed" means increase game speed, etc). RE_Kenshi should use whatever keybinds you have set up there, let me know if that doesn't work.
How can I put both "SoundBanks" and "FileRebinds" in a single RE_Kenshi.json file? I have only been able to have one or the other but not both, what would be the correct syntax, order, etc
you need a comma between the two sections. Using an online JSON formatter/checker can make this easier to debug. Example: { "SoundBanks": [ "yourmodpath/bank.bnk" ], "FileRebinds": { "./data/somefile" : "yourmodpath/somefile" } } It doesn't matter which order the two sections are in, just that there is a comma between them.
Out of random,game crashes on launcher startup on latest version,reinstalation works to some moment,then game get corrupted to point i have to verify files
I ultimately decided to not add this as a core feature, but you should be able to work around the compatibility issue with that mod by disabling the hash check: https://github.com/BFrizzleFoShizzle/RE_Kenshi/wiki/RE_Kenshi-Features#Disable-hash-check
I have been updating the mod Simple Map Fixes, but I seem to be struggling to get the heightmap to update as a RE_Kenshi mod, followed your guide here: https://github.com/BFrizzleFoShizzle/RE_Kenshi/wiki/Loading-the-heightmap-from-your-mods-folder
I followed this step by step but still can't get it to work, any clue what I might be doing wrong?
So I figured out something, it seems that the mod I was creating works from following the tutorial. If I go to the RE_Kenshi settings and set it to "use vanilla heightmap implementation" it works.
Is there a way to update the heightmap for the other two options using the json?
The same method should work, but the paths are slightly different (you should be able to see this in the file I/O logs if you use that) The path used in the fast heightmap code is "data/newland/land/fullmap.tif" (I might fix this to match the vanilla implementation in the next release) The path used in the compressed heightmap code is "data/newland/land/fullmap.cif" - you can generate this file for your mod using a command-line utility (CompressTools.exe) packaged with the RE_Kenshi installer, found in the tools folder.
Check the forward/back slashes vs what I commented, they're different for the compressed map + fast map code vs vanilla (I will probably fix this in the next release while also maintaining backwards compatibility with how they are now so either works). I think this should work on the current version (again due to issues in the current implementation, you'd need two rebinds for the .tif file): { "FileRebinds" : { "data\\newland/land\\fullmap.tif" : "$(modroot \"Heightmap Fix\")/fullmap.tif", "data/newland/land/fullmap.tif" : "$(modroot \"Heightmap Fix\")/fullmap.tif", "data/newland/land/fullmap.cif" : "$(modroot \"Heightmap Fix\")/fullmap.cif" } } I'll also double-check the file I/O logging gets fixed. Pretty sure I know which of my recent changes broke the logging for the non-vanilla implementations. Edit: I added a bug report for this, thanks for reporting the issue to me.
Can someone help? I am trying to add this mod to get sound on the Star Wars mod. I manually downloaded, opened winrar, extracted to kenshi under steamapps (not the mod folder), ran the installer, it asked where to put it but the field was blank, so I just chose the game kenshi app, it said successfully installed, ran game, mod is not listed.
228 comments
If you have crashes or experience bugs, either use the in-game bug/crash reporter (accessible via the RE_Kenshi settings menu) or message me on Discord (my contact info is in the readme) so I can track it down and fix it.
Also check the "bugs" tab on Nexus to see if anyone else has reported a similar issue. Post any extra info you might have there.
Cheers, and have fun!
I have only been able to have one or the other but not both, what would be the correct syntax, order, etc
Thanks :)
Example:
{
It doesn't matter which order the two sections are in, just that there is a comma between them."SoundBanks": [
"yourmodpath/bank.bnk"
],
"FileRebinds": {
"./data/somefile" : "yourmodpath/somefile"
}
}
https://github.com/BFrizzleFoShizzle/RE_Kenshi/wiki/Loading-the-heightmap-from-your-mods-folder
I followed this step by step but still can't get it to work, any clue what I might be doing wrong?
Is there a way to update the heightmap for the other two options using the json?
The path used in the fast heightmap code is "data/newland/land/fullmap.tif" (I might fix this to match the vanilla implementation in the next release)
The path used in the compressed heightmap code is "data/newland/land/fullmap.cif" - you can generate this file for your mod using a command-line utility (CompressTools.exe) packaged with the RE_Kenshi installer, found in the tools folder.
{
"FileRebinds" : {
"data\\newland/land\\fullmap.tif" : "$(modroot \"Heightmap Fix\")/fullmap.tif"
"data\\newland/land\\fullmap.cif" : "$(modroot \"Heightmap Fix\")/fullmap.cif"
}
}
I think this should work on the current version (again due to issues in the current implementation, you'd need two rebinds for the .tif file):
{
"FileRebinds" : {
"data\\newland/land\\fullmap.tif" : "$(modroot \"Heightmap Fix\")/fullmap.tif",
"data/newland/land/fullmap.tif" : "$(modroot \"Heightmap Fix\")/fullmap.tif",
"data/newland/land/fullmap.cif" : "$(modroot \"Heightmap Fix\")/fullmap.cif"
}
}
I'll also double-check the file I/O logging gets fixed. Pretty sure I know which of my recent changes broke the logging for the non-vanilla implementations.
Edit: I added a bug report for this, thanks for reporting the issue to me.
I am trying to add this mod to get sound on the Star Wars mod. I manually downloaded, opened winrar, extracted to kenshi under steamapps (not the mod folder), ran the installer, it asked where to put it but the field was blank, so I just chose the game kenshi app, it said successfully installed, ran game, mod is not listed.