Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions QMultiMod/Patches/CoffeeVendingMachine_OnHover_Patch.cs

This file was deleted.

38 changes: 0 additions & 38 deletions QMultiMod/Patches/CoffeeVendingMachine_OnMachineUse_Patch.cs

This file was deleted.

9 changes: 2 additions & 7 deletions QMultiMod/Patches/DevConsole_HasUsedConsole_Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,8 @@ class DevConsole_HasUsedConsole_Patch
{
public static bool Prefix(ref bool __result)
{
if (QMultiModSettings.Instance.AllowAchievementsWithConsole)
{
__result = false;
return false;
}

return true;
__result = !QMultiModSettings.Instance.AllowAchievementsWithConsole;
return __result;
}
}
}
22 changes: 0 additions & 22 deletions QMultiMod/Patches/Exosuit_UpdateStorageSize_Patch.cs

This file was deleted.

2 changes: 1 addition & 1 deletion QMultiMod/Patches/GrapplingHook_OnCollisionEnter_Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static void Postfix(GrapplingHook __instance, Collision collisionInfo)
return;

if (QMultiModSettings.Instance.ExosuitGrapplingArmDamage != 0f) // to avoid potential event triggers
mixin.TakeDamage(QMultiModSettings.Instance.ExosuitGrapplingArmDamage, creature.transform.position, DamageType.Normal, null);
mixin.TakeDamage(QMultiModSettings.Instance.ExosuitGrapplingArmDamage, creature.transform.position, DamageType.Collide, null);
}
}
}
31 changes: 0 additions & 31 deletions QMultiMod/Patches/Inventory_Awake_Patch.cs

This file was deleted.

14 changes: 0 additions & 14 deletions QMultiMod/Patches/SeamothStorageContainer_Init_Patch.cs

This file was deleted.

22 changes: 0 additions & 22 deletions QMultiMod/Patches/VendingMaching_OnUse_Patch.cs

This file was deleted.

6 changes: 0 additions & 6 deletions QMultiMod/QMultiMod.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@
<Compile Include="CustomClasses\FireExtinguisherCharger.cs" />
<Compile Include="Patches\AttackLastTarget_Perform_Patch.cs" />
<Compile Include="Patches\BaseSpotLight_Start_Patch.cs" />
<Compile Include="Patches\CoffeeVendingMachine_OnHover_Patch.cs" />
<Compile Include="Patches\CoffeeVendingMachine_OnMachineUse_Patch.cs" />
<Compile Include="Patches\CrawlerAttackLastTarget_Perform_Patch.cs" />
<Compile Include="Patches\DamageSystem_CalculateDamage_Patch.cs" />
<Compile Include="Patches\DayNightCycle_Awake_Patch.cs" />
Expand All @@ -72,21 +70,18 @@
<Compile Include="Patches\ExosuitGrapplingArm_FixedUpdate_Patch.cs" />
<Compile Include="Patches\ExosuitGrapplingArm_OnUseDown_Patch.cs" />
<Compile Include="Patches\Exosuit_Start_Patch.cs" />
<Compile Include="Patches\Exosuit_UpdateStorageSize_Patch.cs" />
<Compile Include="Patches\GrapplingHook_OnCollisionEnter_Patch.cs" />
<Compile Include="Patches\Gravsphere_ApplyGravitation_Patch.cs" />
<Compile Include="Patches\Gravsphere_OnTriggerEnter_Patch.cs" />
<Compile Include="Patches\InventoryConsoleCommands_Awake_Patch.cs" />
<Compile Include="Patches\UpdateSwimCharge_FixedUpdate_Patch.cs" />
<Compile Include="Patches\Inventory_Awake_Patch.cs" />
<Compile Include="Patches\MapRoomFunctionality_getMapScale_Patch.cs" />
<Compile Include="Patches\MapRoomFunctionality_GetScanInterval_Patch.cs" />
<Compile Include="Patches\MapRoomFunctionality_GetScanRange_Patch.cs" />
<Compile Include="Patches\NitrogenLevel_Start_Patch.cs" />
<Compile Include="Patches\PickupableStorage_OnHandClick_Patch.cs" />
<Compile Include="Patches\PickupableStorage_OnHandHover_Patch.cs" />
<Compile Include="Patches\Player_Awake_Patch.cs" />
<Compile Include="Patches\SeamothStorageContainer_Init_Patch.cs" />
<Compile Include="Patches\SeaMoth_OnUpgradeModuleChange_Patch.cs" />
<Compile Include="Patches\SubControl_Start_Patch.cs" />
<Compile Include="Patches\SubRoot_UpdateThermalReactorCharge_Patch.cs" />
Expand All @@ -97,7 +92,6 @@
<Compile Include="Patches\uGUI_ResourceTracker_GatherAll_Patch.cs" />
<Compile Include="Patches\uGUI_ResourceTracker_GatherScanned_Patch.cs" />
<Compile Include="Patches\Vehicle_ApplyPhysicsMove_Patch.cs" />
<Compile Include="Patches\VendingMaching_OnUse_Patch.cs" />
<Compile Include="Patches\FireExtinguisherHolder_Start_Patch.cs" />
<Compile Include="Patches\VFXGrapplingRope_Start_Patch.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
Expand Down
8 changes: 0 additions & 8 deletions QMultiMod/QMultiModSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,13 @@ class QMultiModSettings
public int MinDrillableAmount = 2;
public int MaxDrillableAmount = 5;
public float DrillableSpawnChanceMultiplier = 2f;
public int ExosuitStorageWidth = 6;
public int ExosuitStorageHeight = 4;
public int ExosuitWidthPerStorageModule = 0;
public int ExosuitHeightPerStorageModule = 1;
public float ExosuitThrustConsumption = 0.04f;
public float ExosuitClawDamageToLiving = 100f;
public float ExosuitDrillDamageToLiving = 16f;
public float ExosuitGrapplingArmRange = 70f;
public float ExosuitGrapplingArmDamage = 0f;
public int GravsphereMaxTrapped = 24;
public float GravsphereMaxForce = 30f;
public int PlayerInventoryWidth = 8;
public int PlayerInventoryHeight = 8;
public float PlayerDamageTakenMultiplier = 1f;
public float VehicleDamageTakenMultiplier = 2f;
public float SubDamageTakenMultiplier = 2f;
Expand All @@ -37,8 +31,6 @@ class QMultiModSettings
public float SeamothHullMarkOneDepth = 100f;
public float SeamothHullMarkTwoDepth = 300f;
public float SeamothHullMarkThreeDepth = 1500f;
public int SeamothStorageContainerWidth = 6;
public int SeamothStorageContainerHeight = 6;
public float CyclopsThermalReactorEfficiency = 2.0f;
public float CyclopsTurningTorqueMultiplier = 1.5f;
public float CyclopsForwardAccelMultiplier = 1.5f;
Expand Down
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,21 @@ ExosuitGrapplingArmRange | 70.0 | max range of the grappling hook
ExosuitGrapplingArmDamage | 0 | increase this to give the grappling hook damage. a value between 20-50 would be reasonable
GravsphereMaxTrapped | 24 | max number of things a grav sphere can trap
GravsphereMaxForce | 30.0 | amount of force applied by the grav sphere
SwimChargeFinsModifier | 0.005 | the amount of charge returned to your handheld tool while swimming
PlayerInventoryWidth | 8 | how many squares wide
PlayerInventoryHeight | 8 | how many squares tall
PlayerDamageTakenMultiplier | 1.0 | a value of 1.0 would mean no change from default. 2.0 would be double. 0.5 would be half
VehicleDamageTakenMultiplier | 2.0 | ^
SubDamageTakenMultiplier | 2.0 | ^
StorageContainersStack | true |
StorageContainersStack | true | Allow you to pickup the Waterproof Locker and Carry-all bag even then they are full
SeamothReinforcementModuleDepth | 1600.0 | the amount of extra crush depth when the reinforcement mod is turned on
SeamothHullMarkOneDepth | 100.0 | the amount of extra crush depth when the Mk1 module is used
SeamothHullMarkTwoDepth | 100.0 | the amount of extra crush depth when the Mk2 module is used
SeamothHullMarkThreeDepth | 100.0 | the amount of extra crush depth when the Mk3 module is used
SeamothStorageContainerWidth | 6 | how many squares wide
SeamothStorageContainerHeight | 6 | how many squares tall
VehicleForwardForceMultiplier | 1.5 | changes the speed of holding forward in a vehicle
FireExtinguisherHolderRechargeValue | 0.005 | set to 0 to disable recharging the fuel when placed in a holder
SeamothHullMarkTwoDepth | 300.0 | the amount of extra crush depth when the Mk2 module is used
SeamothHullMarkThreeDepth | 1500.0 | the amount of extra crush depth when the Mk3 module is used
CyclopsThermalReactorEfficiency | 2.0 | subnautica's default value is 1.5
CyclopsTurningTorqueMultiplier | 1.5 | set to 1.0 for vanilla
CyclopsForwardAccelMultiplier | 1.5 |
CyclopsVerticalAccelMultiplier | 1.0 |
SwimToMeatVelocity | 8.0 | how quickly the creature swims towards something it can eat, that isn't the player
VehicleForwardForceMultiplier | 1.5 | changes the speed of holding forward in a vehicle
VendingMachineAlsoGivesCoffee | true | will be removed because a lightswitch mod is being released soon
ScannerSpeedNormalInterval | 14.0 | the default interval in seconds for locating a new blip
ScannerSpeedMinimumInterval | 1.0 | sets the fastest rate that your scanner can run at, after other adjustments
ScannerSpeedIntervalPerModule | 3.0 | each speed module added removes 3.0 seconds from the interval
Expand Down