Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- List of programs to check for updates
- local programs = {
- {name = "startup", pastebinCode = "jnj8PdyL"},
- {name = "Dial", pastebinCode = "b3MuJrtj"},
- {name = "Update", pastebinCode = "BBBJSdLh"},
- {name = "Lockdown", pastebinCode = "svrWKbdP"},
- {name = "CloseGate", pastebinCode = "mx2mPrhU"}
- -- Add more programs as needed
- }
- -- Function to check for updates
- local function checkForUpdates(program)
- -- Loop through the list of programs
- for i, program in ipairs(programs) do
- -- Check if the file already exists
- if not fs.exists(program.name) then
- -- Open a new file with the current program name
- local file = fs.open(program.name, "w")
- -- Write a message to the file
- file.write("This is " .. program.name .. ". The pastebin code is " .. program.pastebinCode)
- -- Close the file
- file.close()
- end
- end
- print("Files have been created.")
- print("Checking for updates for " .. program.name .. "...")
- local response = http.get("https://pastebin.com/raw/" .. program.pastebinCode)
- if response then
- local remoteVersion = response.readAll()
- response.close()
- local localVersion = fs.exists(program.name) and fs.open(program.name, "r").readAll() or nil
- if localVersion and localVersion ~= remoteVersion then
- print("Updating " .. program.name .. "...")
- local file = fs.open(program.name, "w")
- file.write(remoteVersion)
- file.close()
- print(program.name .. " updated successfully.")
- else
- print(program.name .. " is up to date.")
- end
- else
- print("Failed to check for updates for " .. program.name)
- end
- end
- -- Main function to check for updates for all programs
- local function main()
- for _, program in ipairs(programs) do
- checkForUpdates(program)
- end
- end
- main()
- os.sleep(1)
- os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement