Advertisement
Marlingaming

CC Tweaked CCSPS 20 - File Access Manager

Feb 22nd, 2022
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. local tArg = {...}
  2. local Name = tArg[1]
  3. local File = tArg[2]
  4. local Image = tArg[3]
  5. local Type = tArg[4]
  6. local file
  7. if Type == "Desktop" then
  8. file = fs.open("os/SystemFiles/DesktopShortcuts","a")
  9. elseif Type == "Taskbar" then
  10. file = fs.open("os/SystemFiles/TaskbarShortcuts","a")
  11. end
  12.  
  13. file.writeLine(Name)
  14. file.writeLine(File)
  15. file.writeLine(Image)
  16.  
  17. file.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement