Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7d46d1674a | |||
| 6b9355594e | |||
| 04450e2d00 | |||
| d7a867587d |
@@ -4,7 +4,7 @@
|
|||||||
<AssemblyName>AutomaticShipSystems</AssemblyName>
|
<AssemblyName>AutomaticShipSystems</AssemblyName>
|
||||||
<Description>
|
<Description>
|
||||||
</Description>
|
</Description>
|
||||||
<Version>0.0.2</Version>
|
<Version>0.0.3</Version>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources>
|
||||||
@@ -26,8 +26,8 @@
|
|||||||
<PackageReference Include="BepInEx.Analyzers" Version="1.*" PrivateAssets="all" />
|
<PackageReference Include="BepInEx.Analyzers" Version="1.*" PrivateAssets="all" />
|
||||||
<PackageReference Include="BepInEx.Core" Version="5.4.21" PrivateAssets="all" />
|
<PackageReference Include="BepInEx.Core" Version="5.4.21" PrivateAssets="all" />
|
||||||
<PackageReference Include="VCMT.Thunderstore.DocBuilder" Version="0.2.1" PrivateAssets="all" />
|
<PackageReference Include="VCMT.Thunderstore.DocBuilder" Version="0.2.1" PrivateAssets="all" />
|
||||||
<PackageReference Include="VCMT.VoidManager" Version="1.2.2" PrivateAssets="all" />
|
<PackageReference Include="VCMT.VoidManager" Version="1.2.7" PrivateAssets="all" />
|
||||||
<PackageReference Include="VoidCrew.GameLibs" Version="0.27.0.2" PrivateAssets="all" />
|
<PackageReference Include="VoidCrew.GameLibs" Version="1.1.1" PrivateAssets="all" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
|
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
|
||||||
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
|
||||||
|
|||||||
@@ -7,11 +7,11 @@ namespace AutomaticShipSystems
|
|||||||
public const string PLUGIN_GUID = $"{PLUGIN_ORIGINAL_AUTHOR}.{PLUGIN_NAME}";
|
public const string PLUGIN_GUID = $"{PLUGIN_ORIGINAL_AUTHOR}.{PLUGIN_NAME}";
|
||||||
public const string PLUGIN_NAME = "AutomaticShipSystems";
|
public const string PLUGIN_NAME = "AutomaticShipSystems";
|
||||||
public const string USERS_PLUGIN_NAME = "Automatic Ship Systems";
|
public const string USERS_PLUGIN_NAME = "Automatic Ship Systems";
|
||||||
public const string PLUGIN_VERSION = "0.0.2";
|
public const string PLUGIN_VERSION = "0.0.3";
|
||||||
public const string PLUGIN_DESCRIPTION = "Makes circuit breakers, thruster boosters, and trims self reset. Disables Progression.";
|
public const string PLUGIN_DESCRIPTION = "Makes circuit breakers, thruster boosters, and trims self reset. Disables Progression.";
|
||||||
public const string PLUGIN_ORIGINAL_AUTHOR = "18107";
|
public const string PLUGIN_ORIGINAL_AUTHOR = "18107";
|
||||||
public const string PLUGIN_AUTHORS = "18107, Dragon";
|
public const string PLUGIN_AUTHORS = "18107, Dragon";
|
||||||
public const string PLUGIN_THUNDERSTORE_ID = "VoidCrewModdingTeam/Automatic_Ship_Systems";
|
public const string PLUGIN_THUNDERSTORE_ID = "NihilityShift/Automatic_Ship_Systems";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#pragma warning restore CS1591
|
#pragma warning restore CS1591
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
## 0.0.3
|
||||||
|
- Updated for Void Crew 1.1.1
|
||||||
|
|
||||||
## 0.0.2
|
## 0.0.2
|
||||||
- Added config for timer duration.
|
- Added config for timer duration.
|
||||||
|
|
||||||
|
|||||||
@@ -12,10 +12,10 @@ UserPluginName=Automatic Ship Systems
|
|||||||
ThunderstorePluginName=Automatic_Ship_Systems
|
ThunderstorePluginName=Automatic_Ship_Systems
|
||||||
|
|
||||||
; The current version of the mod. Used for File Version, BepinPlugin, Thunderstore manifest, and README.
|
; The current version of the mod. Used for File Version, BepinPlugin, Thunderstore manifest, and README.
|
||||||
PluginVersion=0.0.2
|
PluginVersion=0.0.3
|
||||||
|
|
||||||
; Version of the game this mod is built for. Used for README
|
; Version of the game this mod is built for. Used for README
|
||||||
GameVersion=0.27.0
|
GameVersion=1.1.1
|
||||||
|
|
||||||
; The simple description of the mod, used for MyPluginInfo.cs, Thunderstore manifest, and Assembly descriptions. Must be less than 250 Characters.
|
; The simple description of the mod, used for MyPluginInfo.cs, Thunderstore manifest, and Assembly descriptions. Must be less than 250 Characters.
|
||||||
PluginDescription=Makes circuit breakers, thruster boosters, and trims self reset. Disables Progression.
|
PluginDescription=Makes circuit breakers, thruster boosters, and trims self reset. Disables Progression.
|
||||||
@@ -27,13 +27,13 @@ PluginOriginalAuthor=18107
|
|||||||
PluginAuthors=18107, Dragon
|
PluginAuthors=18107, Dragon
|
||||||
|
|
||||||
; WebpageLink - Used by manifest for thunderstore page. Can be left blank.
|
; WebpageLink - Used by manifest for thunderstore page. Can be left blank.
|
||||||
WebpageLink=https://github.com/Void-Crew-Modding-Team/AutomaticShipSystems
|
WebpageLink=https://github.com/Nihility-Shift/AutomaticShipSystems
|
||||||
|
|
||||||
; ThunderStore ID (https://thunderstore.io/c/void-crew/p/VoidCrewModdingTeam/VoidManager/ the section equivelant to 'VoidCrewModdingTeam/VoidManager'). Can be left blank, may be utilized by VoidManager for a future feature.
|
; ThunderStore ID (https://thunderstore.io/c/void-crew/p/NihilityShift/VoidManager/ the section equivelant to 'NihilityShift/VoidManager'). Can be left blank, may be utilized by VoidManager for a future feature.
|
||||||
ThunderstoreID=VoidCrewModdingTeam/Automatic_Ship_Systems
|
ThunderstoreID=NihilityShift/Automatic_Ship_Systems
|
||||||
|
|
||||||
; Dependency Strings - Comma delineated, spacing or no spacing is okay. Used for README and manifest.
|
; Dependency Strings - Comma delineated, spacing or no spacing is okay. Used for README and manifest.
|
||||||
DependencyStrings= BepInEx-BepInExPack-5.4.2100, VoidCrewModdingTeam-VoidManager-1.2.2
|
DependencyStrings= BepInEx-BepInExPack-5.4.2100, NihilityShift-VoidManager-1.2.8
|
||||||
|
|
||||||
|
|
||||||
; PreBuild Execution Params
|
; PreBuild Execution Params
|
||||||
@@ -49,4 +49,4 @@ ChangelogError=true
|
|||||||
ProjectReadmeOutPath=SolutionDir
|
ProjectReadmeOutPath=SolutionDir
|
||||||
|
|
||||||
; Output a zip after building.
|
; Output a zip after building.
|
||||||
ZipOutput=true
|
ZipOutput=true
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[](https://github.com/Void-Crew-Modding-Team)
|
[](https://github.com/Nihility-Shift)
|
||||||

|

|
||||||
[](https://discord.gg/g2u5wpbMGu "Void Crew Modding Discord")
|
[](https://discord.gg/g2u5wpbMGu "Void Crew Modding Discord")
|
||||||
|
|
||||||
@@ -40,8 +40,8 @@ Intended for solo players.
|
|||||||
|
|
||||||
## 🔧 Install Instructions - **Install following the normal BepInEx procedure.**
|
## 🔧 Install Instructions - **Install following the normal BepInEx procedure.**
|
||||||
|
|
||||||
Ensure that you have [BepInEx 5](https://thunderstore.io/c/void-crew/p/BepInEx/BepInExPack/) (stable version 5 **MONO**) and [VoidManager](https://thunderstore.io/c/void-crew/p/VoidCrewModdingTeam/VoidManager/) installed.
|
Ensure that you have [BepInEx 5](https://thunderstore.io/c/void-crew/p/BepInEx/BepInExPack/) (stable version 5 **MONO**) and [VoidManager](https://thunderstore.io/c/void-crew/p/NihilityShift/VoidManager/) installed.
|
||||||
|
|
||||||
#### ✔️ Mod installation - **Unzip the contents into the BepInEx plugin directory**
|
#### ✔️ Mod installation - **Unzip the contents into the BepInEx plugin directory**
|
||||||
|
|
||||||
Drag and drop `[ModName].dll` into `Void Crew\BepInEx\plugins`
|
Drag and drop `[ModName].dll` into `Void Crew\BepInEx\plugins`
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace AutomaticShipSystems
|
|||||||
internal static void Enable()
|
internal static void Enable()
|
||||||
{
|
{
|
||||||
ModEnabled = true;
|
ModEnabled = true;
|
||||||
VoidManager.Progression.ProgressionHandler.DisableProgression(MyPluginInfo.PLUGIN_GUID);
|
// VoidManager.Progression.ProgressionHandler.DisableProgression(MyPluginInfo.PLUGIN_GUID);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override SessionChangedReturn OnSessionChange(SessionChangedInput input)
|
public override SessionChangedReturn OnSessionChange(SessionChangedInput input)
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
[](https://github.com/Void-Crew-Modding-Team)
|
[](https://github.com/Nihility-Shift)
|
||||||

|

|
||||||
[](https://discord.gg/g2u5wpbMGu "Void Crew Modding Discord")
|
[](https://discord.gg/g2u5wpbMGu "Void Crew Modding Discord")
|
||||||
|
|
||||||
# Automatic Ship Systems
|
# Automatic Ship Systems
|
||||||
|
|
||||||
Version 0.0.2
|
Version 0.0.3
|
||||||
For Game Version 0.27.0
|
For Game Version 1.1.1
|
||||||
Developed by 18107, Dragon
|
Developed by 18107, Dragon
|
||||||
Requires: BepInEx-BepInExPack-5.4.2100, VoidCrewModdingTeam-VoidManager-1.2.2
|
Requires: BepInEx-BepInExPack-5.4.2100, NihilityShift-VoidManager-1.2.8
|
||||||
|
|
||||||
|
|
||||||
Makes circuit breakers, thruster boosters, and trims self reset. Disables Progression.
|
Makes circuit breakers, thruster boosters, and trims self reset. Disables Progression.
|
||||||
@@ -40,7 +40,7 @@ Intended for solo players.
|
|||||||
|
|
||||||
## 🔧 Install Instructions - **Install following the normal BepInEx procedure.**
|
## 🔧 Install Instructions - **Install following the normal BepInEx procedure.**
|
||||||
|
|
||||||
Ensure that you have [BepInEx 5](https://thunderstore.io/c/void-crew/p/BepInEx/BepInExPack/) (stable version 5 **MONO**) and [VoidManager](https://thunderstore.io/c/void-crew/p/VoidCrewModdingTeam/VoidManager/) installed.
|
Ensure that you have [BepInEx 5](https://thunderstore.io/c/void-crew/p/BepInEx/BepInExPack/) (stable version 5 **MONO**) and [VoidManager](https://thunderstore.io/c/void-crew/p/NihilityShift/VoidManager/) installed.
|
||||||
|
|
||||||
#### ✔️ Mod installation - **Unzip the contents into the BepInEx plugin directory**
|
#### ✔️ Mod installation - **Unzip the contents into the BepInEx plugin directory**
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user