Implement auto loot

This commit is contained in:
2024-12-31 15:21:57 +01:00
parent 983aaa68e6
commit cd104d142e
3 changed files with 30 additions and 8 deletions

View File

@@ -13,6 +13,7 @@ namespace CykaRaider {
public static ConfigEntry<int> lootTimeAdder;
public static ConfigEntry<float> maxStackMultiplier;
public static ConfigEntry<bool> autoLoot;
public static ConfigEntry<bool> debugMode;
@@ -20,6 +21,7 @@ namespace CykaRaider {
debugMode = Config.Bind("General", "Debug Mode", false, new ConfigDescription("Debug Mode"));
lootTimeAdder = Config.Bind("General", "Loot Time Adder", 0, new ConfigDescription("Loot Time Adder"));
maxStackMultiplier = Config.Bind("General", "Max Stack Multiplier", 1f, new ConfigDescription("Max Stack Multiplier"));
autoLoot = Config.Bind("General", "Auto Loot", false, new ConfigDescription("Auto Loot"));
Logger.LogInfo("Cyka mod loaded");
HarmonyFileLog.Enabled = true;