From 65a2557892ae9549fd7ca3b36c412ecb0c0b49b2 Mon Sep 17 00:00:00 2001 From: Firq Date: Wed, 1 Mar 2023 19:04:29 +0100 Subject: [PATCH] Structuring and small changes --- iceMonitor.cs => Space Engineers/iceMonitoringScript.cs | 9 +++++++++ 1 file changed, 9 insertions(+) rename iceMonitor.cs => Space Engineers/iceMonitoringScript.cs (94%) diff --git a/iceMonitor.cs b/Space Engineers/iceMonitoringScript.cs similarity index 94% rename from iceMonitor.cs rename to Space Engineers/iceMonitoringScript.cs index 7c78a85..953aec7 100644 --- a/iceMonitor.cs +++ b/Space Engineers/iceMonitoringScript.cs @@ -1,5 +1,14 @@ +/** CUSTOMIZE HERE +* Set the thresholds here +*/ + const int upperThreshold = 25000000; const int lowerThreshold = 1000000; + +/** +* DO NOT CHANGE ANYTHING BELOW THIS LINE +*/ + string collectorState = ""; List oreContainers = new List();