Advertisement
AMONUWNA

speedSync

Feb 14th, 2020
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.29 KB | None | 0 0
  1. local downloader = require("downloader")
  2.  
  3. local files = {}
  4.  
  5. files["/home/programs/console/console.lua"] = "https://raw.githubusercontent.com/AmonDeShir/AmonLuaApi/master/console/console.lua"
  6. files["/home/programs/console/menu.lua"] = "https://raw.githubusercontent.com/AmonDeShir/AmonLuaApi/master/console/menu.lua"
  7.  
  8. files["/home/programs/github/github.lua"] = "https://raw.githubusercontent.com/AmonDeShir/AmonLuaApi/master/github/github.lua"
  9. files["/home/programs/github/speedSync.lua"] = "https://raw.githubusercontent.com/AmonDeShir/AmonLuaApi/master/github/speedSync.lua"
  10. files["/home/programs/github/downloader.lua"] = "https://raw.githubusercontent.com/AmonDeShir/AmonLuaApi/master/github/downloader.lua"
  11.  
  12. files["/home/programs/list/list.lua"] = "https://raw.githubusercontent.com/AmonDeShir/AmonLuaApi/master/list/list.lua"
  13. files["/home/programs/list/_list.lua"] = "https://raw.githubusercontent.com/AmonDeShir/AmonLuaApi/master/list/_list.lua"
  14.  
  15. files["/home/programs/testApi/testApi.lua"] = "https://raw.githubusercontent.com/AmonDeShir/AmonLuaApi/master/testApi/testApi.lua"
  16. files["/home/programs/testApi/_testApi.lua"] = "https://raw.githubusercontent.com/AmonDeShir/AmonLuaApi/master/testApi/_testApi.lua"
  17.  
  18. for nameToSave, url in pairs(files) do
  19.   downloader.downloadFile(url, nameToSave)
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement