File information

Last updated

Original upload

Created by

BFrizzleFoShizzle

Uploaded by

BFrizzleFoShizzle

Virus scan

Safe to use

228 comments

  1. BFrizzleFoShizzle
    BFrizzleFoShizzle
    • premium
    • 12 kudos
    Locked
    Sticky
    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!
  2. Brawn777
    Brawn777
    • member
    • 0 kudos
    Hello, can you tell me if it is possible to somehow set up a menu call to a separate key or assign the game speed to separate buttons?
    1. BFrizzleFoShizzle
      BFrizzleFoShizzle
      • premium
      • 12 kudos
      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.
    2. pspgen45
      pspgen45
      • supporter
      • 0 kudos
      Hello, I tried this and it seems to not working. When I use key, it just setup the vanilla speed, and doesn't use the Re_Kenshi inc/decrease
  3. LMelo21
    LMelo21
    • member
    • 0 kudos
    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

    Thanks :)
    1. BFrizzleFoShizzle
      BFrizzleFoShizzle
      • premium
      • 12 kudos
      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.
  4. Narstrom
    Narstrom
    • member
    • 1 kudos
    I HAD TO LOG INTO THIS WEBSITE TO DOWNLOAD THIS AND IT HAS MAJORLY IMPACTED MY DAY PLEASE MAKE A MIRROR THAT ISNT SHITASS MODS
    1. BFrizzleFoShizzle
      BFrizzleFoShizzle
      • premium
      • 12 kudos
      YOU CAN ALSO DOWNLOAD FROM THE GITHUB PAGE (LINK IS IN THE MOD DESCRIPTION). HOPE THAT HELPS.
  5. SilenzXE
    SilenzXE
    • member
    • 0 kudos
    RE_Kenshi owns, thanks.
  6. pcusanb333
    pcusanb333
    • member
    • 3 kudos
    TY. This just make life so much better in PC. any way to get this work on Steam Deck to. On the go to play is fun too if we can.
  7. Syq111
    Syq111
    • member
    • 14 kudos
    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
    1. NewVegasPasserby
      NewVegasPasserby
      • member
      • 0 kudos
      Same here. Launcher coudn't appear even/
  8. mhgo95
    mhgo95
    • member
    • 0 kudos
    The guy who did the Max Level DLL said you could add the code. Have you gotten around to it? Would love that!
    1. BFrizzleFoShizzle
      BFrizzleFoShizzle
      • premium
      • 12 kudos
      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
    2. mhgo95
      mhgo95
      • member
      • 0 kudos
      Thanks! 
  9. CrunkAintDead
    CrunkAintDead
    • premium
    • 7 kudos
    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?
    1. CrunkAintDead
      CrunkAintDead
      • premium
      • 7 kudos
      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?
    2. BFrizzleFoShizzle
      BFrizzleFoShizzle
      • premium
      • 12 kudos
      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.
    3. CrunkAintDead
      CrunkAintDead
      • premium
      • 7 kudos
      I was able to generate a corrected compressed heightmap just fine, when I checked the IO log file I didn't find the file path for fullmap.cif sadly.
    4. CrunkAintDead
      CrunkAintDead
      • premium
      • 7 kudos
      Since Fullmap.cif didn't show up in my log IO file I tried this code. This did not work sadly.

      {
      "FileRebinds" : {
      "data\\newland/land\\fullmap.tif" : "$(modroot \"Heightmap Fix\")/fullmap.tif"
      "data\\newland/land\\fullmap.cif" : "$(modroot \"Heightmap Fix\")/fullmap.cif"
      }
      }
    5. BFrizzleFoShizzle
      BFrizzleFoShizzle
      • premium
      • 12 kudos
      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.
    6. CrunkAintDead
      CrunkAintDead
      • premium
      • 7 kudos
      Thanks for the help, I will try this code soon and let you know if I have issues
  10. JLanePT44
    JLanePT44
    • member
    • 0 kudos
    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.
  11. Nateoid
    Nateoid
    • member
    • 0 kudos