Advertisement
krzyzak

terasology_modules

Apr 7th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.69 KB | None | 0 0
  1. run_linnux.sh
  2. #!/bin/bash
  3. cd "$(dirname "$0")"
  4. java -Xms128m -Xmx1536m -jar libs/Terasology.jar -headless -overrideDefaultConfig=config.cfg
  5.  
  6. # Alternatively use our Launcher from: https://github.com/MovingBlocks/TerasologyLauncher/releases
  7.  
  8.  
  9. config.cfg
  10.  
  11. {
  12.   "defaultModSelection": {
  13.     "modules": [
  14.       "Caves",
  15.       "Breathing",
  16.         "ChrisVolume1OST",
  17.         "ChrisVolume2OST",
  18.         "ClimateConditions",
  19.         "Cooking",
  20.         "CopperAndBronze",
  21.         "CustomOreGen",
  22.         "Durability",
  23.         "Equipment",
  24.         "EventualSkills",
  25.         "Fences",
  26.         "Fluid",
  27.         "GrowingFlora",
  28.         "Hunger",
  29.         "InGameHelp",
  30.         "IRLCorp",
  31.         "ItemRendering",
  32.         "JoshariasSurvival",
  33.         "Journal",
  34.         "Lakes",
  35.         "LightAndShadow",
  36.         "LightAndShadowResources",
  37.         "Machines",
  38.         "ManualLabor",
  39.         "ManualLaborEventualSkills",
  40.         "MiniMap",
  41.         "Minerals",
  42.         "MultiBlock",
  43.         "OreGeneration",
  44.         "PlantPack",
  45.         "PotentialEnergyDevices",
  46.         "Seasons",
  47.         "ShatteredPlanes",
  48.         "SimpleFarming",
  49.         "SimpleLiquids",
  50.         "Smithing",
  51.         "StructuralResources",
  52.         "SubstanceMatters",
  53.         "Thirst",
  54.         "WeatherManager",
  55.         "WildAnimals",
  56.         "WoodAndStone",
  57.         "Workstation",
  58.         "WorkstationCrafting",
  59.         "WordlyTooltip",
  60.         "WorkstationInGameHelp",
  61.     ],
  62.     "defaultGameplayModuleName": "MyModule"
  63.   },
  64.   "worldGeneration": {
  65.     "worldTitle": "World Title",
  66.     "defaultSeed": "custom seed for the server",
  67.     "defaultGenerator": "MyModule:MyWorldgen"
  68.   },
  69.   "moduleConfigs": {},
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement