diff --git a/src/brulijam/lib/createNetworkingKey.lua b/src/brulijam/lib/createNetworkingKey.lua index e1e612d..8a85ce3 100644 --- a/src/brulijam/lib/createNetworkingKey.lua +++ b/src/brulijam/lib/createNetworkingKey.lua @@ -6,8 +6,8 @@ os.loadAPI("brulijam/lib/aes.lua") function createKeyfile() basic.clearDisplay() print("[Networking]") - print("Please enter shared secret for networking.") - print("This will be used to communicate with other Devices and should be the same on different Turtles and Computers.") + print("Please enter a shared secret for networking.") + print("This will be used to communicate with other Devices and should be the same on different Turtles and Computers that you want to be connected.") write("Input: ") local pwHash = hash.digestStr(read("*") .. "salty salt") basic.writeToFile("brulijam/files/networking-key.txt", pwHash) diff --git a/src/startup.lua b/src/startup.lua index 2dc21e7..e1f68fd 100644 --- a/src/startup.lua +++ b/src/startup.lua @@ -2,12 +2,17 @@ local repo = "https://git.brulijam.com/brulijam/Computercraft/raw/branch/main/src" local labelPrefix = "SPHEAL" + +--------------------------------- + + + + + + + print("[Booting]") - - - - if not (fs.exists("brulijam/config/system.txt")) then local systemConfig = {} systemConfig["labelPrefix"] = labelPrefix