Advertisement
Marlingaming

CC Tweaked CCSPS 20 - Shortcut Maker

Mar 7th, 2022 (edited)
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. local tArg = {...}
  2.  
  3. local Name = tArg[1]
  4. local Path = tArg[2]
  5. local Type = tArg[3]
  6. local Image = tArg[4]
  7.  
  8. if Image == nil then
  9. Image = "os/System/Files/Images/defaultIcon.nfp"
  10. end
  11.  
  12. local file
  13. if Type == "Desktop" then
  14. file = fs.open("os/SystemFiles/DesktopShortcuts.txt","a")
  15. elseif Type == "Taskbar" then
  16. file = fs.open("os/SystemFiles/TaskbarShortcuts.txt","a")
  17. end
  18. file.writeLine(Name)
  19. file.writeLine(Path)
  20. file.writeLine(Image)
  21.  
  22. file.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement