From 17751c2cbe0afc6b96563ad74fe3c3de1b3c56e1 Mon Sep 17 00:00:00 2001 From: Pk11 Date: Sun, 1 Nov 2020 15:33:03 -0600 Subject: [PATCH] Destroyed Script example (markdown) --- Script-example.md | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 Script-example.md diff --git a/Script-example.md b/Script-example.md deleted file mode 100644 index cac20a7..0000000 --- a/Script-example.md +++ /dev/null @@ -1,42 +0,0 @@ -The following is an example that features 2 scripts, one for downloading, installing, and deleting a cia file and another for downloading a 3dsx file. -```json -{ - "info": { - "title": "Example", - "shortDesc": "An example script file", - "description": "This is an optional extended description\nto be shown after selecting the file.", - "barColor": "#dc3c00", - "bgBottomColor": "#dca000", - "bgTopColor": "#dca000", - "textColor": "#ffffff", - "selectedColor": "#fa3c00", - "unselectedColor": "#b43c00", - "progressbarColor": "#fa3c00", - "version": 3, - "revision": 1 - }, - "Install cia": [ - { - "type": "downloadFile", - "file": "https://github.com/Universal-Team/extras/raw/master/builds/LeafEdit/LeafEdit.cia", - "output": "sdmc:/LeafEdit.cia", - "message": "Downloading LeafEdit.cia" - }, - { - "type": "installCia", - "file": "sdmc:/LeafEdit.cia" - }, - { - "type": "rmfile", - "file": "sdmc:/LeafEdit.cia" - } - ], - "Install 3dsx": [ - { - "type": "downloadFile", - "file": "https://github.com/Universal-Team/extras/raw/master/builds/LeafEdit/LeafEdit.3dsx", - "output": "sdmc:/3ds/LeafEdit.3dsx" - } - ] -} -``` \ No newline at end of file