Advertisement
Pyromancer3D

CustomOreGen_Config.xml

Jan 13th, 2015
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 23.40 KB | None | 0 0
  1. <Config>
  2.  
  3.     <!--************************   Global Config Options   *********************************
  4.    *   Below are options to control the general behavior of all distributions.
  5.    *************************************************************************************-->
  6.     <ConfigSection>
  7.      
  8.         <OptionDisplayGroup name='groupInternal' displayName=''
  9.                            displayState='hidden'>
  10.             <Description>
  11.                 Hidden, mostly internal options.
  12.             </Description>
  13.         </OptionDisplayGroup>
  14.  
  15.         <OptionChoice name='COGActive'
  16.                      default=':= dimension.generator = "RandomLevelSource" | dimension.generator = "ATGLevelSource"'
  17.                      displayGroup='groupInternal'>
  18.             <Choice value='true' displayValue='On'/>
  19.             <Choice value='false' displayValue='Off'/>
  20.             <Comment>
  21.               Controls whether COG is active in the current
  22.               dimension. Copy this file to CustomOreGen_Config.xml and
  23.               modify the expression for the default value to control
  24.               where COG is active by default.
  25.             </Comment>
  26.         </OptionChoice>
  27.  
  28.         <OptionDisplayGroup name='groupGeneral' displayName='General' displayState='shown'>
  29.             <Description>
  30.                 Options affecting all ore distributions.
  31.             </Description>
  32.         </OptionDisplayGroup>
  33.        
  34.         <OptionNumeric name='oreFreq' default='1' min='0' max='5' displayState='shown' displayGroup='groupGeneral'>
  35.             <Description>
  36.                 A global multiplier for the frequency of all ore distributions.
  37.             </Description>
  38.             <DisplayName>Ore Frequency</DisplayName>
  39.         </OptionNumeric>
  40.        
  41.         <OptionNumeric name='oreSize' default='1' min='0' max='5' displayState='shown' displayGroup='groupGeneral'>
  42.             <Description>
  43.                 A global multiplier for the size of all ore distributions.
  44.             </Description>
  45.             <DisplayName>Ore Deposit Size</DisplayName>
  46.         </OptionNumeric>
  47.        
  48.         <OptionChoice name='debugMode' default='false' displayState='shown_dynamic' displayGroup='groupGeneral'>
  49.             <Description>
  50.                 Enable/disable debugging mode, which allows the use of in-game wireframe models and console commands.  Also controls the visibility of some advanced options.
  51.             </Description>
  52.             <Comment>          
  53.                 This is a "magic" option - it has meaning outside of this file in the COG engine itelf.  You can change the value, obviously, but do not remove the option itself or change the possible values.
  54.             </Comment>
  55.             <DisplayName>Debugging Mode</DisplayName>
  56.             <Choice value='true' displayValue='On'/>
  57.             <Choice value='false' displayValue='Off'/>
  58.         </OptionChoice>
  59.        
  60.         <OptionNumeric name='deferredPopulationRange' default='32' displayGroup='groupGeneral'>
  61.             <Description>
  62.                 Radius (in blocks) around a chunk must be generated before COG will add ores to it.
  63.             </Description>
  64.             <Comment>
  65.                 This is a "magic" option - it has meaning outside of this file in the COG engine itelf.  You can change the value, but do not remove the option itself or change the allowed range.  Changing this value is really not recommended unless you know what you are doing.
  66.             </Comment>
  67.             <DisplayState>:= if(?debugMode,"shown","hidden")</DisplayState>
  68.             <DisplayName>Deferred Chunk Gen. Range</DisplayName>
  69.             <Min>0</Min>
  70.             <Max>128</Max>
  71.             <DisplayIncrement>16</DisplayIncrement>
  72.         </OptionNumeric>
  73.  
  74.         <OptionChoice name='vanillaOreGen' default='true' displayGroup='groupGeneral'>
  75.             <Description>
  76.                 Enable/disable the vanilla ore generators for coal, iron, gold, redstone, lapis lazuli, and diamond.  
  77.             </Description>
  78.             <Comment>    
  79.                 This is a "magic" option - it has meaning outside of this file in the COG engine itelf. You can change the value, but do not remove the option itself.  Recommended values are True/On for new worlds and False/Off for pre-1.4.2 worlds (for compatibility).
  80.             </Comment>
  81.             <Comment>
  82.                 This option completely prevents these ores from being spawned by the vanilla terrain generator. It is more efficient than a Substitute distribution, which lets the generator place an ore and then removes it.  However, for technical reasons this option cannot disable vanilla emerald generation. It also has mixed results with mod generation - mods that recycle the vanilla generator get disabled, while those that use their own do not.  Finally, it is an "all-or-nothing" approach that doesn't distinguish between ore types or world properties.  For these reasons this option defaults to "true", and a Substitute distribution is used below to selectively remove the vanilla ore deposits as needed.
  83.             </Comment>
  84.             <DisplayState>:= if(?debugMode,"shown","hidden")</DisplayState>
  85.             <DisplayName>Vanilla Ore Gen.</DisplayName>
  86.             <Choice value='true' displayValue='On'/>
  87.             <Choice value='false' displayValue='Off'/>
  88.         </OptionChoice>
  89.        
  90.         <OptionChoice name='drawWireframes' default='false' displayGroup='groupGeneral'>
  91.             <Description>
  92.                 Default wireframe state for distributions.  
  93.             </Description>
  94.             <Comment>    
  95.                 Enabling this is only one of the requirements to actually use wireframes - debugging mode must be on and the client must have Forge and COG installed, cheats enabled, and the wireframe rendering mode set up.      
  96.             </Comment>
  97.             <DisplayState>:= if(?debugMode,"shown","hidden")</DisplayState>
  98.             <DisplayName>Distribution Wireframes</DisplayName>
  99.             <Choice value='true' displayValue='On'/>
  100.             <Choice value='false' displayValue='Off'/>
  101.         </OptionChoice>    
  102.        
  103.         <OptionChoice name='debugDist' default='false' displayGroup='groupGeneral'>
  104.             <Description> Enable/disable testing distributions. </Description>
  105.             <DisplayState>:= if(?debugMode,"shown","hidden")</DisplayState>
  106.             <DisplayName>Test Distributions</DisplayName>
  107.             <Choice value='true' displayValue='On'/>
  108.             <Choice value='false' displayValue='Off'/>
  109.         </OptionChoice>  
  110.  
  111.         <OptionChoice name='advOptions' default='false'
  112.                      displayState='shown_dynamic'
  113.                      displayGroup='groupGeneral'>
  114.           <Description>
  115.             Enable/disable advanced frequency and size settings for
  116.             individual distributions.
  117.           </Description>
  118.           <DisplayName>Advanced Options</DisplayName>
  119.           <Choice value='true' displayValue='On'/>
  120.           <Choice value='false' displayValue='Off'/>
  121.         </OptionChoice>
  122.  
  123.     </ConfigSection>
  124.    
  125.     <!--*******************************   Presets   ****************************************
  126.    *   Below are useful "preset" distributions.  These don't generate any ore by themselves,
  127.    *   but they can be used as a base for other distributions.
  128.    *************************************************************************************-->
  129.     <ConfigSection>
  130.    
  131.         <StandardGenPreset name='PresetStandardGen'>  
  132.             <Description>
  133.                 A master preset for standardgen ore distributions.
  134.             </Description>
  135.             <Setting name='Size' avg=':= 8 * oreSize' range='0'/>
  136.             <Setting name='Frequency' avg=':= 20 * oreFreq' range='0'/>
  137.             <Setting name='Height' avg=':= 64/64 * dimension.groundLevel' range=':= 64/64 * dimension.groundLevel'/>
  138.             <Setting name='ParentRangeLimit' avg='32' range='32' type='normal'/>
  139.             <ReplacesOre block='stone'/>
  140.             <Biome name='.*'/>
  141.         </StandardGenPreset>
  142.        
  143.         <VeinsPreset name='PresetLayeredVeins' branchType='Bezier'>  
  144.             <Description>
  145.                 Small, fairly rare motherlodes with 2-4 horizontal veins each.
  146.             </Description>
  147.             <Setting name='MotherlodeFrequency' avg=':= 0.025 * oreFreq'/>
  148.             <Setting name='MotherlodeSize' avg=':= 2.5 * oreSize' range=':= 1 * oreSize'/>
  149.             <Setting name='MotherlodeHeight' avg=':= 32/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel' type='normal'/>
  150.             <Setting name='MotherlodeRangeLimit' avg='32' range='32' type='normal'/>
  151.             <Setting name='BranchFrequency' avg='3' range='2'/>
  152.             <Setting name='BranchInclination' avg='0' range='0.55'/>
  153.             <Setting name='BranchLength' avg='120' range='60'/>
  154.             <Setting name='BranchHeightLimit' avg='16'/>
  155.             <Setting name='SegmentForkFrequency' avg='0.20'/>  
  156.             <Setting name='SegmentForkLengthMult' avg='0.75' range='0.25' />
  157.             <Setting name='SegmentLength' avg='15' range='6'/>
  158.             <Setting name='SegmentAngle' avg='0.50' range='0.50'/>
  159.             <Setting name='SegmentRadius' avg=':= 0.5 * oreSize' range=':= 0.3 * oreSize'/>
  160.             <Setting name='OreDensity' avg='1' range='0'/>
  161.             <Setting name='OreRadiusMult' avg='1.0' range='0.1'/>
  162.             <ReplacesOre block='stone'/>
  163.             <Biome name='.*'/>
  164.         </VeinsPreset>
  165.        
  166.         <VeinsPreset name='PresetVerticalVeins' branchType='Bezier'>    
  167.             <Description>
  168.                 Single vertical veins that occur with no motherlodes.
  169.             </Description>  
  170.             <Setting name='MotherlodeFrequency' avg=':= 0.080 * oreFreq'/>
  171.             <Setting name='MotherlodeSize' avg='0' range='0'/>
  172.             <Setting name='MotherlodeHeight' avg=':= 76/64 * dimension.groundLevel' range='4'/>
  173.             <Setting name='MotherlodeRangeLimit' avg='32' range='32' type='normal'/>
  174.             <Setting name='BranchFrequency' avg='1' range='0'/>
  175.             <Setting name='BranchInclination' avg='-1.31' range='0.22'/>
  176.             <Setting name='BranchLength' avg=':= 48/64 * dimension.groundLevel' range='16' type='normal'/>
  177.             <Setting name='BranchHeightLimit' avg='1000'/>
  178.             <Setting name='SegmentForkFrequency' avg='0.10'/>  
  179.             <Setting name='SegmentAngle' avg='0' range='0.3'/>
  180.             <Setting name='SegmentLength' avg='8' range='4' type='normal'/>
  181.             <Setting name='SegmentRadius' avg=':= 0.30 * oreSize' range=':= 0.1 * oreSize'/>
  182.             <Setting name='OreDensity' avg='1' range='0'/>
  183.             <Setting name='OreRadiusMult' avg='1.0' range='0.1'/>
  184.             <ReplacesOre block='stone'/>
  185.             <Biome name='.*'/>
  186.         </VeinsPreset>
  187.        
  188.         <VeinsPreset name='PresetSmallDeposits'>
  189.             <Description>
  190.                 Small motherlodes without any branches.
  191.                 Similar to the deposits produced by StandardGen distributions.
  192.             </Description>        
  193.             <Setting name='MotherlodeFrequency' avg=':= 1.0 * oreFreq' range=':= 0.3 * oreFreq'/>
  194.             <Setting name='MotherlodeSize' avg=':= 0.9 * oreSize' range=':= 0.3 * oreSize'/>
  195.             <Setting name='MotherlodeHeight' avg=':= 32/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel' type='normal'/>
  196.             <Setting name='MotherlodeRangeLimit' avg='32' range='32' type='normal'/>
  197.             <Setting name='BranchFrequency' avg='0' range='0'/>
  198.             <Setting name='OreDensity' avg='1' range='0'/>
  199.             <Setting name='OreRadiusMult' avg='1.0' range='0.1'/>
  200.             <ReplacesOre block='stone'/>
  201.             <Biome name='.*'/>
  202.         </VeinsPreset>
  203.        
  204.         <VeinsPreset name='PresetLavaDeposits'>
  205.             <Description>
  206.                 Small motherlodes without any branches.  Instead of spawning in stone,
  207.                 these will only spawn in lava pools near the bottom of the map.
  208.                 Note that these lava pools are produced by the vanilla cave generator - any mod
  209.                 that changes or removes cave generation will indirectly affect these deposits.
  210.             </Description>          
  211.             <Setting name='MotherlodeFrequency' avg=':= 6.0 * oreFreq' range=':= 2.0 * oreFreq'/>
  212.             <Setting name='MotherlodeSize' avg=':= 1.5 * oreSize' range=':= 0.8 * oreSize'/>
  213.             <Setting name='MotherlodeHeight' avg='8' range='8' type='uniform'/>
  214.             <Setting name='MotherlodeRangeLimit' avg='32' range='32' type='normal'/>
  215.             <Setting name='BranchFrequency' avg='0' range='0'/>
  216.             <Setting name='OreDensity' avg='1' range='0'/>
  217.             <Setting name='OreRadiusMult' avg='1.0' range='0.1'/>
  218.             <Replaces block='minecraft:lava'/>
  219.             <Biome name='.*'/>
  220.         </VeinsPreset>
  221.        
  222.         <VeinsPreset name='PresetHugeVeins' branchType='Bezier'>
  223.             <Description>
  224.                 Very large, extremely rare motherlodes.  Each motherlode has many long slender branches - so thin that
  225.                 parts of the branch won't contain any ore at all.  This, combined with the incredible length of the
  226.                 branches, makes them more challenging to follow underground.  Once found, however, a motherlode contains
  227.                 enough ore to keep a player supplied for a very long time.
  228.                 The rarity of these veins might be too frustrating in a single-player setting.  In SMP, though, teamwork
  229.                 could make finding them much easier and the motherlodes are big enough to supply several people without
  230.                 shortage.  This might be a good way to add challenge to multiplayer worlds.
  231.                 Credit: based on feedback by dyrewulf from the MC forums.
  232.             </Description>  
  233.             <Setting name='MotherlodeFrequency' avg=':= 0.00025 * oreFreq'/>
  234.             <Setting name='MotherlodeSize' avg=':= 10 * oreSize' range=':= 6 * oreSize' type='normal'/>
  235.             <Setting name='MotherlodeHeight' avg=':= 45/64 * dimension.groundLevel' range=':= 9/64 * dimension.groundLevel' type='normal'/>
  236.             <Setting name='MotherlodeRangeLimit' avg='32' range='32' type='normal'/>
  237.             <Setting name='BranchFrequency' avg='8' range='4'/>
  238.             <Setting name='BranchInclination' avg='0.7' range='0.85'/>
  239.             <Setting name='BranchLength' avg=':= 500 * oreSize' range=':= 400 * oreSize' type='normal'/>
  240.             <Setting name='BranchHeightLimit' avg='1000'/>
  241.             <Setting name='SegmentForkFrequency' avg='0.02'/>
  242.             <Setting name='SegmentForkLengthMult' avg='0.5' range='0.25'/>
  243.             <Setting name='SegmentLength' avg=':= 30 * oreSize' range=':= 6 * oreSize' />
  244.             <Setting name='SegmentAngle' avg='0.30' range='0.30'/>
  245.             <Setting name='SegmentRadius' avg=':= 0.025 * oreSize' range=':= 0.2 * oreSize'/>
  246.             <Setting name='OreDensity' avg='1' range='0'/>
  247.             <Setting name='OreRadiusMult' avg='1' range='0.25'/>
  248.             <ReplacesOre block='stone'/>
  249.             <Replaces block='minecraft:grass'/>
  250.             <Replaces block='minecraft:dirt'/>
  251.             <Replaces block='minecraft:sand'/>
  252.             <Replaces block='minecraft:gravel'/>
  253.             <Replaces block='minecraft:sandstone'/>
  254.             <Biome name='.*'/>
  255.         </VeinsPreset>
  256.        
  257.         <VeinsPreset name='PresetHintVeins'>
  258.             <Description>
  259.                 Single blocks, generously scattered through all heights (density is about that of vanilla iron ore).
  260.                 They will replace dirt and sandstone (but not grass or sand), so they can be found nearer
  261.                 to the surface than most ores.  Intened to be used as a child distribution for large, rare strategic
  262.                 deposits that would otherwise be very difficult to find.
  263.                 Note that the frequency is multiplied by ground level to maintain a constant density, but not by
  264.                 ore frequency because it is assumed that the frequency of the parent distribution will already
  265.                 be scaled by that.
  266.             </Description>  
  267.             <Setting name='MotherlodeFrequency' avg=':= 80 * dimension.groundLevel/64' range=':= 30 * dimension.groundLevel/64'/>
  268.             <Setting name='MotherlodeSize' avg='0.6' range='0'/>
  269.             <Setting name='MotherlodeHeight' avg=':= 50/64 * dimension.groundLevel' range=':= 46/64 * dimension.groundLevel'/>
  270.             <Setting name='MotherlodeRangeLimit' avg=':= 45 * oreSize' range=':= 30 * oreSize' type='uniform'/>
  271.             <Setting name='BranchFrequency' avg='0' range='0'/>
  272.             <Setting name='OreDensity' avg='1' range='0'/>
  273.             <Setting name='OreRadiusMult' avg='1.0' range='0'/>
  274.             <ReplacesOre block='stone'/>
  275.             <Replaces block='minecraft:dirt'/>
  276.             <Replaces block='minecraft:gravel'/>
  277.             <Replaces block='minecraft:sandstone'/>
  278.             <Biome name='.*'/>
  279.         </VeinsPreset>
  280.        
  281.         <VeinsPreset name='PresetSparseVeins' branchType='Bezier'>    
  282.             <Description>
  283.                 Large veins filled very lightly with ore.  Because they contain less ore per volume,
  284.                 these veins are relatively wide and long.  Mining the ore from them is time consuming
  285.                 compared to solid ore veins.  They are also more difficult to follow, since it is
  286.                 harder to get an idea of their direction while mining.
  287.             </Description>
  288.             <Setting name='MotherlodeFrequency' avg=':= 0.0065 * oreFreq'/>            
  289.             <Setting name='MotherlodeSize' avg=':= 2.3 * oreSize' range=':= 0.5 * oreSize'/>
  290.             <Setting name='MotherlodeHeight' avg=':= 32/64 * dimension.groundLevel' range=':= 32/64 * dimension.groundLevel' type='uniform'/>
  291.             <Setting name='MotherlodeRangeLimit' avg='32' range='32' type='normal'/>
  292.             <Setting name='BranchFrequency' avg='1' range='0'/>
  293.             <Setting name='BranchInclination' avg='0' range='0.75'/>
  294.             <Setting name='BranchLength' avg='180' range='90'/>
  295.             <Setting name='BranchHeightLimit' avg='1000'/>
  296.             <Setting name='SegmentForkFrequency' avg='0' range='0'/>
  297.             <Setting name='SegmentForkLengthMult' avg='0' range='0'/>
  298.             <Setting name='SegmentLength' avg='20' range='8'/>
  299.             <Setting name='SegmentAngle' avg='0.35' range='0.35'/>
  300.             <Setting name='SegmentRadius' avg=':= 2.0 * oreSize' range=':= 1.0 * oreSize'/>
  301.             <Setting name='OreDensity' avg='0.04' range='0'/>
  302.             <Setting name='OreRadiusMult' avg='1.0' range='0.1'/>
  303.             <ReplacesOre block='stone'/>
  304.             <Biome name='.*'/>
  305.         </VeinsPreset>
  306.  
  307.         <VeinsPreset name='PresetPipeVeins' branchType='Bezier'>    
  308.             <Description>
  309.                 Short sparsely filled veins sloping up from near the bottom of the map.
  310.             </Description>
  311.             <Setting name='MotherlodeFrequency' avg=':= 0.06 * oreFreq'/>            
  312.             <Setting name='MotherlodeSize' avg=':= 2.3 * oreSize' range=':= 0.5 * oreSize'/>
  313.             <Setting name='MotherlodeHeight' avg=':= 8/64 * dimension.groundLevel' range=':= 8/64 * dimension.groundLevel' type='uniform'/>
  314.             <Setting name='MotherlodeRangeLimit' avg='32' range='32' type='normal'/>
  315.             <Setting name='BranchFrequency' avg='1' range='0'/>
  316.             <Setting name='BranchInclination' avg='0.75' range='0.7' type='normal'/>
  317.             <Setting name='BranchLength' avg='40' range='10'/>
  318.             <Setting name='BranchHeightLimit' avg='1000'/>
  319.             <Setting name='SegmentForkFrequency' avg='0' range='0'/>
  320.             <Setting name='SegmentForkLengthMult' avg='0' range='0'/>
  321.             <Setting name='SegmentLength' avg='8' range='3'/>
  322.             <Setting name='SegmentAngle' avg='0' range='0.25'/>
  323.             <Setting name='SegmentRadius' avg=':= 2.0 * oreSize' range=':= 0.5 * oreSize'/>
  324.             <Setting name='OreDensity' avg='0.04' range='0'/>
  325.             <Setting name='OreRadiusMult' avg='1.0' range='0.1'/>
  326.             <ReplacesOre block='stone'/>
  327.             <Biome name='.*'/>
  328.         </VeinsPreset>        
  329.  
  330.         <CloudPreset name='PresetStrategicCloud'>
  331.             <Description>
  332.                 Large irregular clouds filled lightly with ore.  These are huge, spanning several
  333.                 adjacent chunks, and consequently rather rare.  They contain a sizeable amount of
  334.                 ore, but it takes some time and effort to mine due to low density.
  335.                 The intent for strategic clouds is that the player will need to actively search for
  336.                 one and then set up a semi-permanent mining base and spend some time actually mining
  337.                 the ore.
  338.             </Description>
  339.             <Setting name='DistributionFrequency' avg=':= 0.001 * oreFreq'/>
  340.             <Setting name='ParentRangeLimit' avg='32' range='32' type='normal'/>
  341.             <Setting name='CloudRadius' avg=':= 25 * oreSize' range=':= 10 * oreSize'/>
  342.             <Setting name='CloudThickness' avg=':= 14 * oreSize' range=':= 6 * oreSize'/>
  343.             <Setting name='CloudSizeNoise' avg='0.2'/>
  344.             <Setting name='CloudHeight' avg='32' range='16'
  345.                     type='normal' scaleTo='sealevel'/>
  346.             <Setting name='CloudInclination' avg='0' range='0.35'/>
  347.             <Setting name='OreRadiusMult' avg='1' range='0.1'/>
  348.             <Setting name='OreDensity' avg='0.1'/>
  349.             <Setting name='OreVolumeNoiseCutoff' avg='0.5'/>
  350.             <ReplacesOre block='stone'/>
  351.             <Biome name='.*'/>
  352.         </CloudPreset>
  353.        
  354.     </ConfigSection>
  355.  
  356.     <!-- ******************** Import Standard Configs ********************** -->
  357.     <!--
  358.         NOTE: to override a default config, remove the corresponding
  359.         directive (and optionally add something to 'modules/custom')
  360.    -->
  361.  
  362.     <!-- <Import file='modules/default/ExtraCaves.xml'/>
  363.    <Import file='modules/default/MinecraftOres.xml'/>
  364.    <Import file='modules/default/IndustrialCraft2.xml'/>
  365.    <Import file='modules/default/Forestry.xml'/>
  366.    <Import file='modules/default/ProjectRed.xml'/>
  367.    <Import file='modules/default/Dartcraft.xml'/>
  368.    <Import file='modules/default/TinkersConstruct.xml'/>
  369.    <Import file='modules/default/Metallurgy.xml'/>
  370.    <Import file='modules/default/Railcraft.xml'/>
  371.    <Import file='modules/default/Thaumcraft4.xml'/>
  372.    <Import file='modules/default/BiomesOPlenty.xml'/>
  373.    <Import file='modules/default/Factorization.xml'/>
  374.    <Import file='modules/default/ThermalExpansion.xml'/>
  375.    <Import file='modules/default/SimpleOres2.xml'/>
  376.    <Import file='modules/default/Galacticraft.xml'/>
  377.    <Import file='modules/default/Chisel.xml'/>
  378.    <Import file='modules/default/Mekanism.xml'/>
  379.    <Import file='modules/default/Steamcraft.xml'/>
  380.    <Import file='modules/default/Gregtech.xml'/> -->
  381.  
  382.     <!-- Possible mods to support as standard configs:
  383.         * Pam's Harvest Craft (salt)
  384.         * Mariculture
  385.    -->
  386.  
  387.     <!-- ***************** Import Mod-provided configs ********************* -->
  388.     <!-- NOTE: mods will overwrite these configs upon each load -->
  389.     <OptionalImport file='modules/mods/*.xml'/>
  390.    
  391.     <!-- ******************** Import Custom Configs ************************ -->
  392.     <OptionalImport file='modules/custom/*.xml'/>
  393.    
  394.     <!--*************************   Testing & Debugging   *********************
  395.    *   I use this section for quick-and-dirty experiments
  396.    **************************************************************************-->
  397.     <IfChoice name='debugDist' value='true'>
  398.        
  399.         <!-- Experimental distributions should go here -->
  400.        
  401.     </IfChoice>
  402.    
  403. </Config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement