Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
This branch adds two new features.
- **Auto Pull Lever**: Automatically pulls the ship's lever on load so you can land the ship faster. (Added by [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/))
- **Teleport To Entrance**: Automatically teleports the player in front of the main entrance. (Added by [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/))
  - An extra configuration has been added that allows the player to be teleported inside the dungeon instead.
  • Loading branch information
CTNOriginals committed Feb 13, 2024
1 parent 12f3eb3 commit c5ecc74
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 9 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# v1.1.0 (Latest)
- Added support for joining local games on a second instance of the game. Can be disabled in the config (enabled by default). [Added by [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/)]
# v1.2.0 (Latest)
This branch adds two new features.
- **Auto Pull Lever**: Automatically pulls the ship's lever on load so you can land the ship faster. (Added by [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/))
- **Teleport To Entrance**: Automatically teleports the player in front of the main entrance. (Added by [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/))
- An extra configuration has been added that allows the player to be teleported inside the dungeon instead.
### v1.1.0
- Added support for joining local games on a second instance of the game. Can be disabled in the config (enabled by default). (Added by [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/))
# v1.0.0 (Released 2024-01-23)
- Initial release
2 changes: 1 addition & 1 deletion DevelopmentStartup/DevelopmentStartup.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>DevelopmentStartup</AssemblyName>
<Description>My first plugin</Description>
<Version>1.1.0</Version>
<Version>1.2.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
Expand Down
2 changes: 1 addition & 1 deletion DevelopmentStartup/PluginInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ public static class PluginInfo
{
public const string PLUGIN_GUID = "com.ctnoriginals.DevelopmentStartup";
public const string PLUGIN_NAME = "DevelopmentStartup";
public const string PLUGIN_VERSION = "1.1.0";
public const string PLUGIN_VERSION = "1.2.0";
}
}
23 changes: 18 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# DevelopmentStartup
Skip all the useless startup menus and jump right into a game! Tool for developers.
Skip all the useless startup menus and jump right into a game! Tool for developers. <br>
Big thanks to [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/) for the contributions to this mod!

![Startup preview gif](https://raw.githubusercontent.com/CTN-Originals/LethalCompany-DevelopmentStartup/main/resources/DevelopmentStartup-preview.gif)

Expand All @@ -9,13 +10,25 @@ Skip all the useless startup menus and jump right into a game! Tool for develope
2. Extract the zip file.
3. Move the `BepInEx/plugins/DevelopmentStartup.dll` file to `BepInEx/plugins` folder.
4. Move the `BepInEx/config/DevelopmentStartup.cfg` file to `BepInEx/config` folder.
5. Launch the game and never wonder where you are aiming again!
5. Launch the game and start wondering why it took you so long to find this tool!
### Thunderstore
Install using the Thunderstore Mod Manager: https://thunderstore.io/c/lethal-company/p/CTNOriginals/DevelopmentStartup/
Install using the [Thunderstore](https://thunderstore.io/c/lethal-company/p/ebkr/r2modman/) Mod Manager: https://thunderstore.io/c/lethal-company/p/CTNOriginals/DevelopmentStartup/

---

# Configuration
| Option | Description | Default |
| ------ | ----------- | ------- |
| **AutoJoinLAN** | Automatically join LAN lobbies when game is launched more than once. | `true` |
| **AutoPullLever** | Automatically pull the ship's lever on startup. | `false` |
| **TeleportToEntrance** | Automatically teleports you to the main entrance on level load (Requires 'AutoPullLever' enabled). | `false` |
| **TeleportInside** | Teleports you inside the facility instead (Requires 'TeleportToEntrance' enabled). | `false` |

## To-Do
- [x] Add support for joining local games on a second instance of the game. [Added by [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/)]
- [ ] Add the option to pull the ship lever once you join the lobby.
- [x] Add support for joining local games on a second instance of the game. (Added by [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/))
- [x] Add the option to pull the ship lever once you join the lobby. (Added by [Kittenji](https://thunderstore.io/c/lethal-company/p/Kittenji/))
- [ ] Add a config option to choose the launch method (online or lan) and have it override FastStartup's setting/method.
- [ ] Add a config option to turn on debug mode to allow the user to see the logs in the console.

## Changelog
See [CHANGELOG.md](https://github.com/CTN-Originals/LethalCompany-DevelopmentStartup/blob/main/CHANGELOG.md) for the full changelog.

0 comments on commit c5ecc74

Please sign in to comment.