From 55e567b21034434c0966fcd98a0c0e00cfd58dde Mon Sep 17 00:00:00 2001 From: t0stiman <18124323+t0stiman@users.noreply.github.com> Date: Tue, 13 Feb 2024 19:49:58 +0100 Subject: [PATCH] README --- README.MD | 13 +++++++++++-- src/Settings.cs | 5 ++--- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/README.MD b/README.MD index c093cfb..e84b5a7 100644 --- a/README.MD +++ b/README.MD @@ -4,13 +4,22 @@ A Railroader utilities mod. ## Features -TODO +All features are off by default and can be enabled from the mod's settings menu (ctrl + F10). + +- Enable bunny hopping (hold space to keep jumping) +- Show a timestamp on every message in the console +- Car push force multiplier. Higher number -> bigger YEET. +- Disable derailing +- Disable damage to rolling stock +- Report damage to rolling stock and derailments in the console + +![screenshots/derailnoti1.png](screenshots/derailnoti1.png) ## How to install 1. install Unity Mod Manager(UMM) and configure it for Railroader 2. download this mods zip and yeet it into UMM -## Support me +## Support me? If you like my mods, please consider [buying me a coffee](https://ko-fi.com/tostiman). Thanks! diff --git a/src/Settings.cs b/src/Settings.cs index d26cb33..513ec16 100644 --- a/src/Settings.cs +++ b/src/Settings.cs @@ -27,15 +27,14 @@ public void Draw(UnityModManager.ModEntry modEntry) GUILayout.Label("These always work and only apply to you:"); GUILayout.Space(SPACE); - EnableBunnyHopping = GUILayout.Toggle(EnableBunnyHopping, "Hold space to keep jumping"); + EnableBunnyHopping = GUILayout.Toggle(EnableBunnyHopping, "Enable bunny hopping (hold space to keep jumping)"); ConsoleTimeStamps = GUILayout.Toggle(ConsoleTimeStamps, "Show a timestamp on every message in the console"); GUILayout.Space(SPACE); GUILayout.Label("These only work in multiplayer if you are the server host, and apply to ALL players:"); GUILayout.Space(SPACE); - DrawFloatInput("Car push force multiplier. Higher number -> bigger YEET.", - ref PushForceMultiplier_text, ref PushForceMultiplier); + DrawFloatInput("Car push force multiplier. Higher number -> bigger YEET.", ref PushForceMultiplier_text, ref PushForceMultiplier); DisableDerailing = GUILayout.Toggle(DisableDerailing, "Disable derailing"); DisableDamage = GUILayout.Toggle(DisableDamage, "Disable damage to rolling stock");