Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
t0stiman committed Feb 13, 2024
1 parent 545c420 commit 55e567b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
13 changes: 11 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -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!
5 changes: 2 additions & 3 deletions src/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 55e567b

Please sign in to comment.