This commit is contained in:
Julian Brammer 2024-06-08 21:48:10 +02:00
parent 9d9261e4c3
commit 74906094b9
2 changed files with 7 additions and 1 deletions

View File

@ -44,6 +44,7 @@ local function inputTimeout()
end end
local function inputPrompt() local function inputPrompt()
basic.clearDisplay()
write("Enter Password: ") write("Enter Password: ")
inputHash = hash.digestStr(read("*") .. os.getComputerID()) inputHash = hash.digestStr(read("*") .. os.getComputerID())
end end

View File

@ -1,7 +1,12 @@
--you may change these values --you may change these values
local repo = "https://git.brulijam.com/brulijam/Computercraft/raw/branch/main/src" local repo = "https://git.brulijam.com/brulijam/Computercraft/raw/branch/main/src"
local motd = settings.get("motd.enable")
if motd then
shell.run("set motd.enable false") shell.run("set motd.enable false")
end
--fetch sync script --fetch sync script
getRequest = http.get(repo .. "/brulijam/sync.lua") getRequest = http.get(repo .. "/brulijam/sync.lua")