Advertisement
ReDestroyDeR

quick_run.lua

Oct 11th, 2021 (edited)
724
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | None | 0 0
  1. print("Removing old JSON Library...")
  2. shell.run("rm", "json.lua")
  3. print("Removing old Config API...")
  4. shell.run("rm", "config_api.lua")
  5. print("Removing old Graph API...")
  6. shell.run("rm", "graph_api.lua")
  7. print("Removing old Client...")
  8. shell.run("rm", "client.lua")
  9. print("Removing old Startup File...")
  10. shell.run("rm", "startup")
  11. print("Downloading JSON Library...")
  12. shell.run("pastebin", "get",  "https://pastebin.com/iJ1G60K3", "json.lua")
  13. print("Downloading Config Api...")
  14. shell.run("pastebin", "get",  "https://pastebin.com/EHYGbKqt", "config_api.lua")
  15. print("Downloading Graph Api...")
  16. shell.run("pastebin", "get",  "https://pastebin.com/jPvharxj", "graph_api.lua")
  17. print("Downloading Client...")
  18. shell.run("pastebin", "get",  "https://pastebin.com/ENfUgqez", "client.lua")
  19. print("Downloading Startup File...")
  20. shell.run("pastebin", "get",  "https://pastebin.com/Yv5RZUfP", "startup")
  21. print("Finished Update")
  22. print("Starting client")
  23. shell.run("startup")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement