Advertisement
Marlingaming

CCSPS Iron - 2.5.0 - Installer - Applications

Jun 14th, 2023 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. local Things = {{"BSB","boot/Scripts/Base.lua","rbK07i0v",false,"n","n"},{"BSS","boot/Scripts/Scan.lua","sf5duqYm",false,"n","n"},{"Desk1","os/System/Programs/Desktop_1.lua","r5pLDFHu",false,"n","n"},{"Desk2","os/System/Programs/Desktop_2.lua","HZWbmveM",false,"n","n"},{"OsMan","os/System/Programs/OsManager.lua","Diup5LY2",false,"n","n"},{"SecHand","os/System/Programs/SecurityHandler.lua","3Gq0KgeD",false,"n","n"},{"PowerMan","os/System/Scripts/PowerOff.lua","DBcaibHm",false,"n","n"},{"AccSetup","os/System/Scripts/AccountSetup.lua","DeiJf7Da",false,"n","n"},{"TxtEditor","os/System/Programs/TextEditor.lua","tVxPQRYL",false,"n","n"},{"ProEdit","os/System/Programs/ProfileEditor.lua","sSz8GzBX",false,"n","n"},{"FileExplorer","os/System/Programs/FileSystemNavigator.lua","bNUy5dBq",true,"Taskbar","os/System/Saved/Images/Desktop_FileExplorer.nfp"},{"Ex install","os/System/Programs/ExInstall.lua","BkGvhc2g",true,"Desktop","os/System/Saved/Images/Desktop_Default.nfp"},{"Help","os/System/Programs/InstructionManual.lua","f0vUBCJB",true,"Popup","n"},{"Settings","os/System/Programs/SettingsMenu.lua","Zr6AWBhW",true,"Popup","n"},{"FileProp","os/System/Programs/FilePropEdit.lua","aNxs8wBB",false,"n","n"},{"log","os/System/Programs/LogManager","USJPtnxZ",false,"n","n"},{"UpdateHandler","os/Updater/UpdateHandler.lua","d6zuEhTM",false,"n","n"}}
  2.  
  3. local ClientInstall = "os/System/Programs/InstallHandler.lua"
  4.  
  5. local Paster = "os/System/Scripts/SilentPaster.lua"
  6.  
  7. function Download(I)
  8.  
  9. shell.run(Paster,"get",Things[I][3],Things[I][2])
  10. if Things[I][4] == true then
  11. local Path = fs.combine("os/System/Saved/Shortcuts",(Things[I][1]..".txt"))
  12. local file = fs.open(Path,"w")
  13. file.writeLine(Things[I][1])
  14. file.writeLine(Things[I][2])
  15. file.writeLine(Things[I][6])
  16. file.writeLine(Things[I][5])
  17. file.close()
  18. else
  19.  
  20. end
  21. end
  22.  
  23. for i = 1, #Things do
  24. Download(i)
  25. end
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement