Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Insert any programs you want to download and keep updated
- --Use this in combination with the updater program
- local downloadList =
- {
- --[[
- Appropriate format for adding a program is:
- ["Program Name"] = {"url To Download Program", "pathToSaveTo", versionNumber}
- If you change the path you want it to download to, change the version as well. The updater
- will only make changes/updates if the versionNumber of the program changes
- ]]
- ["Move API"] = {"9QFxP4Ff", "api/move", 1.0},
- ["Core API"] = {"9QFxP4Ff", "api/core", 1.0},
- ["Tree Cutter"] = {"ybK185kE", "programs/tree", 1.0},
- ["Fast Refuel"] = {"C4Z2BuQr", "programs/refuel", 1.0},
- ["Portable Miner"] = {"FY8PwDzH", "programs/portableMiner", 1.0},
- ["React Launcher"] = {"x0G51xNs", "startup", 1.0}
- }
- --Don't change this, these are how updater references the data above
- function getData(program)
- local table = downloadList[program]
- return unpack(table)
- end
Add Comment
Please, Sign In to add comment