0 of 0

File information

Last updated

Original upload

Created by

SKNTheLisper

Uploaded by

SknTheLisper

Virus scan

Safe to use

Tags for this mod

8 comments

  1. WolvesHero
    WolvesHero
    • supporter
    • 0 kudos
    This is saved to my life, I hate went back load games in base long way every time death.
  2. Goofygunkles
    Goofygunkles
    • member
    • 0 kudos
    what about quick load?
    1. SknTheLisper
      SknTheLisper
      • premium
      • 65 kudos
      I already tried, but the TL:DR to it is; I'd need to implement a completely new load system in order to do quickloading.

      So sufficed to say; I have no interest in doing that, lol.
  3. c1248985321
    c1248985321
    • member
    • 0 kudos
    does it work in multiplayer mode?
    1. SknTheLisper
      SknTheLisper
      • premium
      • 65 kudos
      Have not tested for multiplayer so have absolutely no idea.
    2. c1248985321
      c1248985321
      • member
      • 0 kudos
      well, it seems that this mod can work normally in multiplayer. Thank you for your mod:)
  4. tempbito
    tempbito
    • premium
    • 77 kudos
    You can use KeybindConfigEntry  like this:


     public static KeybindConfigEntry Hotkey { get; private set; }

     public static void Init()
     {
      Category = ConfigSystem.CreateFileCategory("TestingMod", "TestingMod", "TestingMod.cfg");
      Hotkey = Category.CreateKeybindEntry("HotkeyKey", RedLoader.Preferences.EInputKey.t, "Example Hotkey");
      Hotkey.Notify(hotkeyAction);
     }

    1. SknTheLisper
      SknTheLisper
      • premium
      • 65 kudos
      Thanks! Have updated the mod for this. Had no idea that KeybindConfigEntry was a thing, lol.