Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.43 KB | None | 0 0
  1. --[[
  2.  
  3.     Concise Mod Manager - <Custom Folder> Config File
  4.              eudaimonia - April 2019
  5.  
  6.  
  7. ────────────────────────────────────────────────────────────────────────────────
  8.  ** IMPORTANT
  9. --------------------------------------------------------------------------------
  10.   * This file could be overwritten when this mod is updated.
  11.   * Please *BACKUP* this file when you finish editing.
  12.  
  13.  
  14. ────────────────────────────────────────────────────────────────────────────────
  15.  ** Editor
  16. --------------------------------------------------------------------------------
  17.   > Any text editor will do.
  18.   > Notepad++ is recommended.
  19.     - Notepad++ is a free source code editor.
  20.     - It will color code this file. Making it much more easier to read & edit.
  21.     - Download: https://notepad-plus-plus.org
  22.  
  23.  
  24. ────────────────────────────────────────────────────────────────────────────────
  25.  ** Instructions
  26. --------------------------------------------------------------------------------
  27.   > Where to edit?
  28.     CustomFolders = {
  29.       -> The section you'll be editing. <-
  30.     };
  31.  
  32.   > How to name a folder?
  33.     - Folder name is between (not include) the double quotation marks.
  34.     - eg: FolderName = "Custom Folder A"
  35.           The name of this folder is: Custom Folder A
  36.  
  37.   > How to add a mod to a folder?
  38.     1) Click the 'Generate Mod ID' button next to the mod.
  39.     2) Select the code it generates.                     - Ctrl+A (Select All)
  40.     3) Copy the code.                                    - Ctrl+C (Copy)
  41.     4) Paste it under the 'ModList' of a folder.         - Ctrl+V (Paste)
  42.  
  43.  
  44. ────────────────────────────────────────────────────────────────────────────────
  45.  ** Rules
  46. --------------------------------------------------------------------------------
  47.   > You can add as many folders as you want.
  48.   > You can add as many mods in a folder as you want.
  49.   > The same mod can be added to different folders.
  50.  
  51.  
  52. ────────────────────────────────────────────────────────────────────────────────
  53.  ** Additional Info
  54. --------------------------------------------------------------------------------
  55.   > A more detailed guide is pinned in the discussion section of
  56.     Concise Mod Manager's Steam Workshop webpage.
  57.     https://steamcommunity.com/sharedfiles/filedetails/?id=1712085767
  58.  
  59.  
  60. ────────────────────────────────────────────────────────────────────────────────
  61.  ** Folder Template
  62. --------------------------------------------------------------------------------
  63.     {
  64.       FolderName = "CUSTOM_FOLDER_NAME",
  65.       ModList = {
  66.         "1234567890", -- genrated by "Generate Mod ID" button
  67.       }
  68.     },
  69.  
  70.  
  71. ──────────────────────────────────────────────────────────────────────────────]]
  72. CustomFolders = {
  73. --------------------------------------------------------------------------------
  74.  
  75.  
  76.   { -- Folder A
  77.     FolderName = "Custom Folder A",
  78.     ModList = {
  79.       "1671978687",  -- Concise UI - [ Core ]
  80.     }
  81.   },
  82.  
  83.   { -- Folder B
  84.     FolderName = "Custom Folder B",
  85.     ModList = {
  86.       "1681714708",  -- Concise UI - Civ Assistant
  87.       "1671982095",  -- Concise UI - Deal Panel
  88.       "1671984106",  -- Concise UI - Great Works Screen
  89.       "1671985335",  -- Concise UI - Leader Icon
  90.       "1671994053",  -- Concise UI - Unit List
  91.     }
  92.   },
  93.  
  94. --------------------------------------------------------------------------------
  95. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement