├── .github ├── FUNDING.yml ├── weekly-digest.yml ├── no-response.yml ├── support.yml ├── move.yml └── README.md ├── kubejs ├── assets │ ├── createtogether │ │ └── lang │ │ │ └── en_us.json │ └── kubejs │ │ └── textures │ │ └── item │ │ └── netherite_triple_ingot.png ├── server_scripts │ ├── tags │ │ ├── items │ │ │ └── create │ │ │ │ ├── no_move.js │ │ │ │ ├── windmill_sails.js │ │ │ │ ├── fan_transparent.js │ │ │ │ ├── upright_on_belt.js │ │ │ │ └── fan_heaters.js │ │ └── blocks │ │ │ └── create │ │ │ ├── no_move.js │ │ │ ├── fan_heaters.js │ │ │ ├── fan_transparent.js │ │ │ └── windmill_sails.js │ ├── recipes │ │ ├── minecraft │ │ │ └── smithing.js │ │ ├── shapeless.js │ │ ├── remove.js │ │ ├── create │ │ │ ├── splashing.js │ │ │ └── mechanical_crafting.js │ │ └── shaped.js │ └── constants.js ├── config │ ├── common.properties │ └── client.properties ├── client_scripts │ ├── jei_descriptions.js │ ├── constants.js │ ├── tooltips.js │ └── jei_hide_items.js ├── startup_scripts │ └── script.js ├── README.txt └── data │ └── minecraft │ └── loot_tables │ └── entities │ └── husk.json ├── github-changelog-generator.bat ├── InstanceSync.jar ├── config ├── jei │ ├── ingredient-list-type-sort-order.ini │ ├── ingredient-list-mod-sort-order.ini │ └── recipe-category-sort-order.ini ├── flywheel-client.toml ├── cookiecore-client.toml ├── fastbench.cfg ├── decorative_blocks-common.toml ├── fml.toml ├── simplybackpacks-common.toml ├── forge-common.toml ├── roadrunner │ └── rules.properties ├── defaultoptions-common.toml ├── logprot-common.toml ├── magicfeather-common.toml ├── ftbultimine.json5 ├── constructionwand-client.toml ├── ftbultimine.snbt ├── dynview-common.toml ├── storagedrawers-common.toml ├── serverconfigupdater-common.toml ├── ferritecore-mixin.toml ├── forge-client.toml ├── enigmaticgraves-common.toml ├── defaultoptions │ ├── options.txt │ └── keybindings.txt ├── create-common.toml ├── cobblegenrandomizer-common.toml ├── packmenu.cfg └── simplemagnets-common.toml ├── automation ├── update-and-start-server.sh ├── update-and-start-server.bat ├── .build.json ├── InstanceSyncSetup.sh ├── InstanceSyncSetup.bat ├── remove-client-mods.ps1 ├── settings.cfg └── update-server.ps1 ├── packmenu └── resources │ ├── pack.mcmeta │ └── assets │ ├── enigmatica │ ├── textures │ │ ├── logo.png │ │ ├── mods.png │ │ ├── quit.png │ │ ├── bisect.png │ │ ├── button.png │ │ ├── discord.png │ │ ├── empty.png │ │ ├── github.png │ │ ├── options.png │ │ ├── twitter.png │ │ ├── language.png │ │ ├── multiplayer.png │ │ ├── singleplayer.png │ │ └── accessibility.png │ ├── lang │ │ └── en_us.json │ └── buttons │ │ ├── empty.json │ │ ├── twitter.json │ │ ├── language.json │ │ ├── accessibility.json │ │ ├── discord.json │ │ ├── quit.json │ │ ├── mods.json │ │ ├── bisect.json │ │ ├── options.json │ │ ├── multiplayer.json │ │ ├── singleplayer.json │ │ └── github.json │ ├── createtogether │ └── textures │ │ └── icon.png │ ├── packmenu │ └── textures │ │ └── gui │ │ ├── reload.png │ │ └── widgets.png │ └── minecraft │ └── textures │ └── gui │ └── accessibility.png ├── .prettierrc ├── defaultconfigs ├── MouseTweaks.cfg ├── ftbultimine │ ├── ftbultimine-client.snbt │ └── ftbultimine-server.snbt ├── sidebar_buttons.json ├── roadrunner │ └── common.toml ├── appleskin-client.toml ├── constructionwand-client.toml ├── betteradvancements-client.toml ├── ftbchunks.snbt ├── theoneprobe-common.toml ├── entity_culling-client.toml ├── jei-client.toml ├── create-client.toml ├── buildinggadgets-server.toml ├── invtweaks-client.toml └── theoneprobe-client.toml ├── changelogs ├── changelog_mods_1.1.1.md ├── changelog_mods_1.0.3.md ├── changelog_mods_1.1.3.md ├── changelog_mods_1.1.2.md ├── changelog_mods_1.0.2.md ├── modlist_1.0.0.md ├── modlist_1.0.1.md ├── changelog_mods_1.0.8.md ├── changelog_mods_1.0.9.md ├── changelog_mods_1.1.5.md ├── modlist_1.0.2.md ├── changelog_mods_1.0.4.md ├── modlist_1.0.3.md ├── modlist_1.0.4.md ├── changelog_mods_1.0.5.md ├── modlist_1.0.5.md ├── modlist_1.0.6.md ├── modlist_1.0.9.md ├── modlist_1.1.0.md └── modlist_1.0.8.md ├── server_files ├── start-server.bat ├── start-server.sh └── server-guide.txt ├── local └── ftbchunks │ └── client-config.snbt └── .gitignore /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: NillerMedDild -------------------------------------------------------------------------------- /kubejs/assets/createtogether/lang/en_us.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /github-changelog-generator.bat: -------------------------------------------------------------------------------- 1 | github_changelog_generator --since-tag 1.0.0 -------------------------------------------------------------------------------- /InstanceSync.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/InstanceSync.jar -------------------------------------------------------------------------------- /config/jei/ingredient-list-type-sort-order.ini: -------------------------------------------------------------------------------- 1 | net.minecraft.item.ItemStack 2 | net.minecraftforge.fluids.FluidStack 3 | -------------------------------------------------------------------------------- /automation/update-and-start-server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | powershell $PWD/update-server.ps1 4 | $PWD/../start-automated-server.sh -------------------------------------------------------------------------------- /kubejs/server_scripts/tags/items/create/no_move.js: -------------------------------------------------------------------------------- 1 | onEvent('item.tags', (event) => { 2 | event.add('create:no_move', no_move); 3 | }); 4 | -------------------------------------------------------------------------------- /kubejs/server_scripts/tags/blocks/create/no_move.js: -------------------------------------------------------------------------------- 1 | onEvent('block.tags', (event) => { 2 | event.add('create:no_move', no_move); 3 | }); 4 | -------------------------------------------------------------------------------- /packmenu/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 6, 4 | "description": "PackMenu External Resources" 5 | } 6 | } -------------------------------------------------------------------------------- /automation/update-and-start-server.bat: -------------------------------------------------------------------------------- 1 | Powershell.exe -ExecutionPolicy RemoteSigned -File %~dp0update-server.ps1 2 | call %~dp0..\start-automated-server.bat -------------------------------------------------------------------------------- /kubejs/server_scripts/tags/blocks/create/fan_heaters.js: -------------------------------------------------------------------------------- 1 | onEvent('block.tags', (event) => { 2 | event.add('create:fan_heaters', fan_heaters); 3 | }); 4 | -------------------------------------------------------------------------------- /kubejs/server_scripts/tags/items/create/windmill_sails.js: -------------------------------------------------------------------------------- 1 | onEvent('item.tags', (event) => { 2 | event.add('create:windmill_sails', windmill_sails); 3 | }); 4 | -------------------------------------------------------------------------------- /kubejs/server_scripts/tags/blocks/create/fan_transparent.js: -------------------------------------------------------------------------------- 1 | onEvent('block.tags', (event) => { 2 | event.add('create:fan_transparent', fan_transparent); 3 | }); 4 | -------------------------------------------------------------------------------- /kubejs/server_scripts/tags/blocks/create/windmill_sails.js: -------------------------------------------------------------------------------- 1 | onEvent('block.tags', (event) => { 2 | event.add('create:windmill_sails', windmill_sails); 3 | }); 4 | -------------------------------------------------------------------------------- /kubejs/server_scripts/tags/items/create/fan_transparent.js: -------------------------------------------------------------------------------- 1 | onEvent('item.tags', (event) => { 2 | event.add('create:fan_transparent', fan_transparent); 3 | }); 4 | -------------------------------------------------------------------------------- /kubejs/server_scripts/tags/items/create/upright_on_belt.js: -------------------------------------------------------------------------------- 1 | onEvent('item.tags', (event) => { 2 | event.add('create:upright_on_belt', upright_on_belt); 3 | }); 4 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/logo.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/mods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/mods.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/quit.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/bisect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/bisect.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/button.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/discord.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/empty.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/github.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/options.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/twitter.png -------------------------------------------------------------------------------- /packmenu/resources/assets/createtogether/textures/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/createtogether/textures/icon.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/language.png -------------------------------------------------------------------------------- /packmenu/resources/assets/packmenu/textures/gui/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/packmenu/textures/gui/reload.png -------------------------------------------------------------------------------- /packmenu/resources/assets/packmenu/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/packmenu/textures/gui/widgets.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/netherite_triple_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/kubejs/assets/kubejs/textures/item/netherite_triple_ingot.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/multiplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/multiplayer.png -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/singleplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/singleplayer.png -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none", 3 | "tabWidth": 4, 4 | "semi": true, 5 | "singleQuote": true, 6 | "printWidth": 120, 7 | "bracketSpacing": true 8 | } 9 | -------------------------------------------------------------------------------- /config/flywheel-client.toml: -------------------------------------------------------------------------------- 1 | #Enable or disable the entire engine 2 | enabled = true 3 | #Enable or disable a debug overlay that colors pixels by their normal 4 | debugNormals = false 5 | 6 | -------------------------------------------------------------------------------- /defaultconfigs/MouseTweaks.cfg: -------------------------------------------------------------------------------- 1 | RMBTweak=1 2 | LMBTweakWithItem=1 3 | LMBTweakWithoutItem=1 4 | WheelTweak=1 5 | WheelSearchOrder=1 6 | WheelScrollDirection=0 7 | ScrollItemScaling=0 8 | Debug=0 9 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/textures/accessibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/enigmatica/textures/accessibility.png -------------------------------------------------------------------------------- /packmenu/resources/assets/minecraft/textures/gui/accessibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnigmaticaModpacks/CreateTogether/HEAD/packmenu/resources/assets/minecraft/textures/gui/accessibility.png -------------------------------------------------------------------------------- /config/cookiecore-client.toml: -------------------------------------------------------------------------------- 1 | #Enable the CookieRealm Flat world preset 2 | enableTerracottaWorldPreset = false 3 | #Set to empty to disable trans bees. Separate names with a space 4 | transBeeNames = ["zoe"] 5 | 6 | -------------------------------------------------------------------------------- /kubejs/config/common.properties: -------------------------------------------------------------------------------- 1 | #KubeJS Common Properties 2 | #Tue Nov 09 22:10:01 CET 2021 3 | hideServerScriptErrors=false 4 | packmode=default 5 | debugInfo=false 6 | announceReload=false 7 | serverOnly=false 8 | -------------------------------------------------------------------------------- /kubejs/server_scripts/recipes/minecraft/smithing.js: -------------------------------------------------------------------------------- 1 | onEvent('recipes', (event) => { 2 | event.smithing('easypaxellite:netherite_paxel', 'easypaxellite:diamond_paxel', 'kubejs:netherite_triple_ingot'); 3 | }); 4 | -------------------------------------------------------------------------------- /config/fastbench.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | B:"Remove Recipe Book"=true 5 | 6 | # If the recipe book button is removed. [default: true] 7 | B:"Remove Recipe Book Button"=true 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /automation/.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "packAuthor": "NillerMedDild", 3 | "minecraftVersion": "1.16.5", 4 | "modLoader": "forge", 5 | "modLoaderVersion": "36.2.22", 6 | "includes": ["config", "defaultconfigs", "kubejs", "local", "packmenu"] 7 | } 8 | -------------------------------------------------------------------------------- /kubejs/server_scripts/tags/items/create/fan_heaters.js: -------------------------------------------------------------------------------- 1 | onEvent('item.tags', (event) => { 2 | event.add( 3 | 'create:fan_heaters', 4 | fan_heaters.filter((item) => item != 'minecraft:lava' && item != 'create:lit_blaze_burner') 5 | ); 6 | }); 7 | -------------------------------------------------------------------------------- /.github/weekly-digest.yml: -------------------------------------------------------------------------------- 1 | # Configuration for weekly-digest - https://github.com/apps/weekly-digest 2 | publishDay: sun 3 | canPublishIssues: true 4 | canPublishPullRequests: true 5 | canPublishContributors: true 6 | canPublishStargazers: true 7 | canPublishCommits: true 8 | -------------------------------------------------------------------------------- /automation/InstanceSyncSetup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd .. 4 | echo "#!/bin/sh" > .git/hooks/post-merge 5 | echo "java -jar InstanceSync.jar" >> .git/hooks/post-merge 6 | 7 | echo "Done setting up hooks" 8 | echo "Running InstanceSync" 9 | 10 | java -jar InstanceSync.jar -------------------------------------------------------------------------------- /config/decorative_blocks-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Decorative Blocks Configs 3 | [general] 4 | #Bonfire Activator (define a resource location 5 | "bonfire activator" = "minecraft:blaze_powder" 6 | #Disable thatch creation on shearing hay bale 7 | "thatch enabled" = true 8 | 9 | -------------------------------------------------------------------------------- /defaultconfigs/ftbultimine/ftbultimine-client.snbt: -------------------------------------------------------------------------------- 1 | # Default config file that will be copied to C:\Users\Niels\Curseforge\Minecraft\Instances\CreateTogether\local\ftbultimine-client.snbt if it doesn't exist! 2 | # Just copy any values you wish to override in here! 3 | 4 | { } 5 | -------------------------------------------------------------------------------- /config/fml.toml: -------------------------------------------------------------------------------- 1 | # Enable forge global version checking 2 | versionCheck = false 3 | # does the splashscreen run 4 | splashscreen = true 5 | defaultConfigPath = "defaultconfigs" 6 | # max threads for parallel loading : -1 uses Runtime#availableProcessors 7 | maxThreads = -1 8 | 9 | -------------------------------------------------------------------------------- /config/simplybackpacks-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Anti-Nesting 3 | [antinesting] 4 | #List of Resource Locations for items to be blocked 5 | itemBlacklist = [] 6 | #List of Resource Locations for items to be allowed despite matching other blocking checks. 7 | itemWhitelist = [] 8 | 9 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.1.1.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.1.0⟶CreateTogether 1.1.1 2 | 3 | ## Added 4 | 5 | * [Enigmatic Graves](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves) 6 | 7 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 8 | -------------------------------------------------------------------------------- /defaultconfigs/ftbultimine/ftbultimine-server.snbt: -------------------------------------------------------------------------------- 1 | # Default config file that will be copied to C:\Users\Niels\Curseforge\Minecraft\Instances\CreateTogether\saves\New World (2)\serverconfig\ftbultimine-server.snbt if it doesn't exist! 2 | # Just copy any values you wish to override in here! 3 | 4 | { } 5 | -------------------------------------------------------------------------------- /automation/InstanceSyncSetup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | cd .. 4 | type NUL > .git/hooks/post-merge 5 | echo #!/bin/sh > .git/hooks/post-merge 6 | echo java -jar InstanceSync.jar >> .git/hooks/post-merge 7 | 8 | echo Done setting up hooks 9 | echo Running InstanceSync 10 | 11 | java -jar InstanceSync.jar -------------------------------------------------------------------------------- /kubejs/client_scripts/jei_descriptions.js: -------------------------------------------------------------------------------- 1 | onEvent('jei.information', (event) => { 2 | //refinedStorageItems variable is in the constants.js file 3 | refinedStorageItems.forEach((item) => { 4 | event.add(`refinedstorage:${item}`, 'Can be dyed by right clicking it with dye in-world.'); 5 | }); 6 | }); 7 | -------------------------------------------------------------------------------- /config/jei/ingredient-list-mod-sort-order.ini: -------------------------------------------------------------------------------- 1 | Minecraft 2 | Construction Wand 3 | Create 4 | Quark 5 | Storage Drawers 6 | Building Gadgets 7 | Magic Feather 8 | Refined Storage 9 | Easy Paxel Lite 10 | Simple Magnets 11 | The One Probe 12 | Decorative Blocks 13 | Simply Backpacks 14 | KubeJS 15 | Enigmatic Graves 16 | FTB Library 17 | -------------------------------------------------------------------------------- /defaultconfigs/sidebar_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "ftbteams": { 3 | "my_team": true 4 | }, 5 | "ftblibrary": { 6 | "toggle.gamemode": false, 7 | "toggle.rain": false, 8 | "toggle.day": false, 9 | "toggle.night": false 10 | }, 11 | "ftbchunks": { 12 | "chunks": true 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /config/forge-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #General configuration settings 3 | [general] 4 | #Defines a default world type to use. The vanilla default world type is represented by 'default'. 5 | #The modded world types are registry names which should include the registry namespace, such as 'examplemod:example_world_type'. 6 | defaultWorldType = "default" 7 | 8 | -------------------------------------------------------------------------------- /kubejs/server_scripts/recipes/shapeless.js: -------------------------------------------------------------------------------- 1 | onEvent('recipes', (event) => { 2 | const recipes = [ 3 | { 4 | output: 'kubejs:netherite_triple_ingot', 5 | inputs: ['3x minecraft:netherite_ingot'] 6 | } 7 | ]; 8 | 9 | recipes.forEach((recipe) => { 10 | event.shapeless(recipe.output, recipe.inputs); 11 | }); 12 | }); 13 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.0.3.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.0.2⟶CreateTogether 1.0.3 2 | 3 | ## Added 4 | 5 | * [Chunk-Pregenerator](https://www.curseforge.com/minecraft/mc-mods/chunkpregenerator) 6 | * [ServerConfig Updater](https://www.curseforge.com/minecraft/mc-mods/serverconfig-updater) 7 | 8 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 9 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "packmenu.enigmatica.singleplayer": "Singleplayer", 3 | "packmenu.enigmatica.multiplayer": "Multiplayer", 4 | "packmenu.enigmatica.bisect": "Rent a Server", 5 | "packmenu.enigmatica.options": "Options", 6 | "packmenu.enigmatica.mods": "Mods", 7 | "packmenu.enigmatica.github": "Report a Bug", 8 | "packmenu.enigmatica.quit": "Quit" 9 | } 10 | -------------------------------------------------------------------------------- /config/roadrunner/rules.properties: -------------------------------------------------------------------------------- 1 | # This is the configuration file for RoadRunner. 2 | # This file exists for debugging purposes and should not be configured otherwise. 3 | # 4 | # You can find information on editing this file and all the available options here: 5 | # https://github.com/MaxNeedsSnacks/roadrunner/wiki/Configuration-Files#rule-overrides 6 | # 7 | # By default, this file will be empty except for this notice. 8 | -------------------------------------------------------------------------------- /config/defaultoptions-common.toml: -------------------------------------------------------------------------------- 1 | #The default difficulty selected for newly created worlds. 2 | #Allowed Values: PEACEFUL, EASY, NORMAL, HARD 3 | defaultDifficulty = "NORMAL" 4 | #Set to true if the difficulty for new world's should be locked ot the specific default. This cannot be unlocked by players without external tools! Probably a bad idea. I don't recommend. Why am I adding this option? 5 | lockDifficulty = false 6 | 7 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 0, 3 | "y": 245, 4 | "width": 175, 5 | "height": 20, 6 | "action": "NONE", 7 | "u": 0, 8 | "v": 0, 9 | "hoverU": 0, 10 | "hoverV": 20, 11 | "texWidth": 175, 12 | "texHeight": 40, 13 | "texture": "enigmatica:textures/empty.png", 14 | "anchor": "TOP_LEFT", 15 | "active": false 16 | } 17 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.1.3.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.1.2⟶CreateTogether 1.1.3 2 | 3 | ## Added 4 | 5 | * [More Overlays Updated](https://www.curseforge.com/minecraft/mc-mods/more-overlays-updated) 6 | 7 | ## Removed 8 | 9 | * [Soggy's Guns](https://www.curseforge.com/minecraft/mc-mods/soggys-guns) 10 | 11 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 12 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/twitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 74, 3 | "y": 245, 4 | "width": 20, 5 | "height": 20, 6 | "action": "OPEN_URL", 7 | "data": "https://twitter.com/NillerMedDild", 8 | "u": 0, 9 | "v": 0, 10 | "hoverU": 0, 11 | "hoverV": 20, 12 | "texWidth": 20, 13 | "texHeight": 40, 14 | "texture": "enigmatica:textures/twitter.png", 15 | "anchor": "TOP_LEFT" 16 | } 17 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/language.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 104, 3 | "y": 245, 4 | "width": 20, 5 | "height": 20, 6 | "action": "OPEN_GUI", 7 | "data": "LANGUAGE", 8 | "u": 0, 9 | "v": 0, 10 | "hoverU": 0, 11 | "hoverV": 20, 12 | "texWidth": 20, 13 | "texHeight": 40, 14 | "texture": "enigmatica:textures/language.png", 15 | "anchor": "TOP_LEFT" 16 | } 17 | -------------------------------------------------------------------------------- /config/logprot-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [Login-settings] 3 | #Time in ticks the logging player is invulnerable, 20 ticks = 1sec. Default is 50secs = 1000 ticks 4 | #Range: 0 ~ 50000 5 | invulnerabilityTime = 2400 6 | #Max distance in blocks(2d) the invulnerability lasts, default: 10 7 | #Range: 1 ~ 200 8 | maxDistance = 2 9 | 10 | [debug] 11 | #Wether to enable debug log outputs, default: false 12 | debugLog = false 13 | 14 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/accessibility.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 134, 3 | "y": 245, 4 | "width": 20, 5 | "height": 20, 6 | "action": "OPEN_GUI", 7 | "data": "ACCESSIBILITY", 8 | "u": 0, 9 | "v": 0, 10 | "hoverU": 0, 11 | "hoverV": 20, 12 | "texWidth": 20, 13 | "texHeight": 40, 14 | "texture": "enigmatica:textures/accessibility.png", 15 | "anchor": "TOP_LEFT" 16 | } 17 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/discord.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 44, 3 | "y": 245, 4 | "width": 20, 5 | "height": 20, 6 | "action": "OPEN_URL", 7 | "data": "https://discord.gg/xPPwaFx", 8 | "u": 0, 9 | "v": 0, 10 | "hoverU": 0, 11 | "hoverV": 20, 12 | "texWidth": 20, 13 | "texHeight": 40, 14 | "texture": "enigmatica:textures/discord.png", 15 | "anchor": "TOP_LEFT" 16 | } 17 | -------------------------------------------------------------------------------- /kubejs/config/client.properties: -------------------------------------------------------------------------------- 1 | #KubeJS Client Properties 2 | #Wed Sep 22 21:47:54 CEST 2021 3 | fmlLogColor=ECEFF4 4 | barBorderColor=ECEFF4 5 | overrideColors=false 6 | menuBackgroundScale=32.0 7 | fmlMemoryColor=ECEFF4 8 | barColor=ECEFF4 9 | showTagNames=true 10 | menuBackgroundBrightness=64 11 | disableRecipeBook=false 12 | menuInnerBackgroundBrightness=32 13 | title=Create Together 14 | backgroundColor=2E3440 15 | exportAtlases=false 16 | -------------------------------------------------------------------------------- /kubejs/server_scripts/recipes/remove.js: -------------------------------------------------------------------------------- 1 | onEvent('recipes', (event) => { 2 | const removals = [ 3 | { 4 | id: /refinedstorage:(?!controller|cable|crafting_grid|external_storage|quartz_enriched_iron|quartz_enriched_iron_block)\w+/ 5 | }, 6 | { 7 | mod: 'theoneprobe' 8 | }, 9 | { mod: 'simplybackpacks' } 10 | ]; 11 | removals.forEach((removal) => { 12 | event.remove(removal); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/quit.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 0, 3 | "y": 220, 4 | "width": 175, 5 | "height": 20, 6 | "langKey": "packmenu.enigmatica.quit", 7 | "action": "QUIT", 8 | "u": 0, 9 | "v": 0, 10 | "hoverU": 0, 11 | "hoverV": 20, 12 | "texWidth": 175, 13 | "texHeight": 40, 14 | "texture": "enigmatica:textures/quit.png", 15 | "fontColor": 16777215, 16 | "hoverFontColor": 10861513, 17 | "anchor": "TOP_LEFT" 18 | } 19 | -------------------------------------------------------------------------------- /kubejs/client_scripts/constants.js: -------------------------------------------------------------------------------- 1 | //priority: 1000 2 | 3 | const refinedStorageItems = [ 4 | 'grid', 5 | 'crafting_grid', 6 | 'pattern_grid', 7 | 'fluid_grid', 8 | 'controller', 9 | 'creative_controller', 10 | 'network_receiver', 11 | 'network_transmitter', 12 | 'relay', 13 | 'detector', 14 | 'security_manager', 15 | 'wireless_transmitter', 16 | 'crafter', 17 | 'crafting_monitor', 18 | 'disk_manipulator', 19 | 'crafter_manager' 20 | ]; 21 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/mods.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 0, 3 | "y": 170, 4 | "width": 175, 5 | "height": 20, 6 | "langKey": "packmenu.enigmatica.mods", 7 | "action": "OPEN_GUI", 8 | "data": "MODS", 9 | "u": 0, 10 | "v": 0, 11 | "hoverU": 0, 12 | "hoverV": 20, 13 | "texWidth": 175, 14 | "texHeight": 40, 15 | "texture": "enigmatica:textures/mods.png", 16 | "fontColor": 16777215, 17 | "hoverFontColor": 10861513, 18 | "anchor": "TOP_LEFT" 19 | } 20 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/bisect.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 0, 3 | "y": 120, 4 | "width": 175, 5 | "height": 20, 6 | "langKey": "packmenu.enigmatica.bisect", 7 | "action": "OPEN_URL", 8 | "data": "https://www.bisecthosting.com/niller", 9 | "u": 0, 10 | "v": 0, 11 | "hoverU": 0, 12 | "hoverV": 20, 13 | "texWidth": 175, 14 | "texHeight": 40, 15 | "texture": "enigmatica:textures/bisect.png", 16 | "fontColor": 16777215, 17 | "hoverFontColor": 10861513, 18 | "anchor": "TOP_LEFT" 19 | } 20 | -------------------------------------------------------------------------------- /kubejs/client_scripts/tooltips.js: -------------------------------------------------------------------------------- 1 | onEvent('item.tooltip', (event) => { 2 | const recipes = []; 3 | 4 | //refinedStorageItems variable is in the constants.js file 5 | refinedStorageItems.forEach((item) => { 6 | recipes.push({ 7 | items: ['refinedstorage:' + item], 8 | text: [Text.of('Can be dyed by right clicking it with dye in-world.').blue()] 9 | }); 10 | }); 11 | 12 | recipes.forEach((recipe) => { 13 | event.add(recipe.items, recipe.text); 14 | }); 15 | }); 16 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 0, 3 | "y": 145, 4 | "width": 175, 5 | "height": 20, 6 | "langKey": "packmenu.enigmatica.options", 7 | "action": "OPEN_GUI", 8 | "data": "OPTIONS", 9 | "u": 0, 10 | "v": 0, 11 | "hoverU": 0, 12 | "hoverV": 20, 13 | "texWidth": 175, 14 | "texHeight": 40, 15 | "texture": "enigmatica:textures/options.png", 16 | "fontColor": 16777215, 17 | "hoverFontColor": 10861513, 18 | "anchor": "TOP_LEFT" 19 | } 20 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/multiplayer.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 0, 3 | "y": 95, 4 | "width": 175, 5 | "height": 20, 6 | "langKey": "packmenu.enigmatica.multiplayer", 7 | "action": "OPEN_GUI", 8 | "data": "MULTIPLAYER", 9 | "u": 0, 10 | "v": 0, 11 | "hoverU": 0, 12 | "hoverV": 20, 13 | "texWidth": 175, 14 | "texHeight": 40, 15 | "texture": "enigmatica:textures/multiplayer.png", 16 | "fontColor": 16777215, 17 | "hoverFontColor": 10861513, 18 | "anchor": "TOP_LEFT" 19 | } 20 | -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/singleplayer.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 0, 3 | "y": 70, 4 | "width": 175, 5 | "height": 20, 6 | "langKey": "packmenu.enigmatica.singleplayer", 7 | "action": "OPEN_GUI", 8 | "data": "SINGLEPLAYER", 9 | "u": 0, 10 | "v": 0, 11 | "hoverU": 0, 12 | "hoverV": 20, 13 | "texWidth": 175, 14 | "texHeight": 40, 15 | "texture": "enigmatica:textures/singleplayer.png", 16 | "fontColor": 16777215, 17 | "hoverFontColor": 10861513, 18 | "anchor": "TOP_LEFT" 19 | } 20 | -------------------------------------------------------------------------------- /kubejs/startup_scripts/script.js: -------------------------------------------------------------------------------- 1 | // priority: 0 2 | 3 | console.info('Hello, World! (You will only see this line once in console, during startup)') 4 | 5 | onEvent('item.registry', event => { 6 | // Register new items here 7 | // event.create('example_item').displayName('Example Item') 8 | event.create('netherite_triple_ingot').displayName('Netherite Triple Ingot').group('misc').maxStackSize(64) 9 | }) 10 | 11 | onEvent('block.registry', event => { 12 | // Register new blocks here 13 | // event.create('example_block').material('wood').hardness(1.0).displayName('Example Block') 14 | }) -------------------------------------------------------------------------------- /packmenu/resources/assets/enigmatica/buttons/github.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 0, 3 | "y": 195, 4 | "width": 175, 5 | "height": 20, 6 | "langKey": "packmenu.enigmatica.github", 7 | "action": "OPEN_URL", 8 | "data": "https://github.com/NillerMedDild/CreateTogether/issues?utf8=%E2%9C%93&q=is%3Aissue", 9 | "u": 0, 10 | "v": 0, 11 | "hoverU": 0, 12 | "hoverV": 20, 13 | "texWidth": 175, 14 | "texHeight": 40, 15 | "texture": "enigmatica:textures/github.png", 16 | "fontColor": 16777215, 17 | "hoverFontColor": 10861513, 18 | "anchor": "TOP_LEFT" 19 | } 20 | -------------------------------------------------------------------------------- /defaultconfigs/roadrunner/common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Configuration for world-related tweaks. 3 | #Please note that these options will only work if their corresponding mixin rule is enabled as well! 4 | [world] 5 | 6 | [world.light_batching] 7 | #Changes the max amount of tasks that the lighting engine may process at a time. 8 | #By default, Vanilla uses a value of 500 during and 5 after initial world load, 9 | #you may however change this to any arbitrary amount as in some cases, 10 | #larger batch sizes may actually lead to *less* stalling when it comes to chunk loading. 11 | #Range: > 0 12 | size = 5 13 | 14 | -------------------------------------------------------------------------------- /kubejs/server_scripts/recipes/create/splashing.js: -------------------------------------------------------------------------------- 1 | onEvent('recipes', (event) => { 2 | const recipes = [ 3 | { 4 | outputs: [Item.of('create:zinc_nugget').chance(0.12), Item.of('minecraft:gravel').chance(0.5)], 5 | input: 'minecraft:andesite' 6 | }, 7 | { 8 | outputs: [Item.of('create:copper_nugget').chance(0.12), Item.of('minecraft:clay_ball').chance(0.5)], 9 | input: 'create:limesand' 10 | } 11 | ]; 12 | 13 | recipes.forEach((recipe) => { 14 | event.recipes.create.splashing(recipe.outputs, recipe.input); 15 | }); 16 | }); 17 | -------------------------------------------------------------------------------- /config/magicfeather-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [item] 3 | #If curios is installed, the magic feather will need to be installed in its charm slot to function. 4 | requires_curios = true 5 | 6 | [range_computation] 7 | #How many blocks are added to the range per level? 8 | #Range: > -2147483648 9 | range_step = 10 10 | #What is the beacon base range? 11 | #Range: > -2147483648 12 | base_range = 10 13 | #How the beacon range is calculated vertically. Java = Vanilla Java Behavior. Bedrock = Vanilla Bedrock behavior. FullHeight = expand vertical range to maximum 14 | #Allowed Values: Java, FullHeight 15 | vertical_range_type = "FullHeight" 16 | 17 | -------------------------------------------------------------------------------- /config/ftbultimine.json5: -------------------------------------------------------------------------------- 1 | { 2 | /* Max amount of blocks that can be ultimined at once 3 | Range: 1 - 32768 4 | */ 5 | "maxBlocks": 64, 6 | /* Hunger multiplied for each block mined with ultimine 7 | Range: 0 - 10000 8 | */ 9 | "exhaustionPerBlock": 1.0, 10 | // Groups stone types together so you can mine all of them at once 11 | "mergeStone": false, 12 | // Disable warnings for potentially laggy config settings 13 | "noLagWarnings": false, 14 | // Manual x offset of FTB Ultimine overlay, required for some modpacks 15 | "renderTextManually": -1, 16 | /* Render the white outline around blocks to be mined 17 | Should be disabled for more than 512 blocks! 18 | */ 19 | "renderOutline": true 20 | } -------------------------------------------------------------------------------- /kubejs/server_scripts/constants.js: -------------------------------------------------------------------------------- 1 | //priority: 1000 2 | const windmill_sails = ['#quark:quilted_wools']; 3 | const fan_transparent = [ 4 | /bars/, 5 | /chain_link/, 6 | /leaves/, 7 | /scaffolding_standard/, 8 | /scaffolding_grate/, 9 | 'quark:grate', 10 | 'minecraft:scaffolding', 11 | 'minecraft:chain', 12 | 'decorative_blocks:chain' 13 | ]; 14 | const no_move = [/refinedstorage:/]; 15 | const upright_on_belt = [/bucket/, /bottle$/, /juice/, 'quark:bottled_cloud']; 16 | const fan_heaters = [ 17 | '#minecraft:fire', 18 | '#minecraft:campfires', 19 | /brazier/, 20 | 'minecraft:lava', 21 | 'minecraft:magma_block', 22 | 'create:lit_blaze_burner', 23 | /magma_bricks/ 24 | ]; 25 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- 1 | # Configuration for probot-no-response - https://github.com/probot/no-response 2 | 3 | # Number of days of inactivity before an Issue is closed for lack of response 4 | daysUntilClose: 7 5 | # Label requiring a response 6 | responseRequiredLabel: "Status: Awaiting Information" 7 | # Comment to post when closing an Issue for lack of response. Set to `false` to disable 8 | closeComment: > 9 | This issue has been automatically closed because there has been no response 10 | to our request for more information from the original author. With only the 11 | information that is currently in the issue, we don't have enough information 12 | to take action. Please reach out if you have or find the answers we need so 13 | that we can investigate further. 14 | -------------------------------------------------------------------------------- /automation/remove-client-mods.ps1: -------------------------------------------------------------------------------- 1 | # List of Mods to remove for the Server 2 | # In the format @("filename", "filename") 3 | $CLIENT_MODS_TO_REMOVE_FROM_SERVER_FILES = @( 4 | "PackMenu" 5 | ) 6 | 7 | if (Test-Path "mods" -PathType Container) { 8 | $modFolder = "mods" 9 | } 10 | elseif (Test-Path "$PSScriptRoot/mods" -PathType Container) { 11 | $modFolder = "$PSScriptRoot/mods" 12 | } 13 | else { 14 | Write-Host "Unable to find the mods folder, no client mods will be removed." -ForegroundColor Red 15 | } 16 | 17 | Write-Host 18 | Write-Host "Removing client only mods..." -ForegroundColor Cyan 19 | Get-ChildItem $modFolder -Name -Filter "*.jar" | ForEach-Object { 20 | foreach ($clientOnlyMod in $CLIENT_MODS_TO_REMOVE_FROM_SERVER_FILES) { 21 | if ($_.StartsWith($clientOnlyMod)) { 22 | Remove-Item "$modfolder/$_" -Force 23 | Write-Host "Removed the client mod $clientOnlyMod" 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /defaultconfigs/appleskin-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [client] 3 | #If true, shows the hunger (and saturation if showSaturationHudOverlay is true) that would be restored by food you are currently holding 4 | showFoodValuesHudOverlay = true 5 | #If true, shows your food exhaustion as a progress bar behind the hunger bars 6 | showFoodExhaustionHudUnderlay = true 7 | #If true, adds a line that shows your hunger, saturation, and exhaustion level in the F3 debug overlay 8 | showFoodStatsInDebugOverlay = true 9 | #If true, shows the hunger and saturation values of food in its tooltip while holding SHIFT 10 | showFoodValuesInTooltip = true 11 | #If true, shows the hunger and saturation values of food in its tooltip automatically (without needing to hold SHIFT) 12 | showFoodValuesInTooltipAlways = true 13 | #If true, shows your current saturation level overlayed on the hunger bar 14 | showSaturationHudOverlay = true 15 | 16 | -------------------------------------------------------------------------------- /config/constructionwand-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #This is the Client config for ConstructionWand. 3 | #If you're not familiar with Forge's new split client/server config, let me explain: 4 | #Client config is stored in the /config folder and only contains client specific settings like graphics and keybinds. 5 | #Mod behavior is configured in the Server config, which is world-specific and thus located 6 | #in the /saves/myworld/serverconfig folder. If you want to change the serverconfig for all 7 | #new worlds, copy the config files in the /defaultconfigs folder. 8 | [keys] 9 | #Key code of OPTKEY (Default: Left Control). Look up key codes under https://www.glfw.org/docs/3.3/group__keys.html 10 | #Range: 0 ~ 350 11 | OptKey = 341 12 | #Press SNEAK+OPTKEY instead of SNEAK for changing wand mode/direction lock 13 | ShiftOpt = false 14 | #Press SNEAK+OPTKEY instead of SNEAK for opening wand GUI 15 | ShiftOptGUI = true 16 | 17 | -------------------------------------------------------------------------------- /server_files/start-server.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | SETLOCAL 3 | 4 | 5 | :BEGIN 6 | CLS 7 | COLOR 3F >nul 2>&1 8 | SET MC_SYS32=%SYSTEMROOT%\SYSTEM32 9 | REM Make batch directory the same as the directory it's being called from 10 | REM For example, if "run as admin" the batch starting dir could be system32 11 | CD "%~dp0" >nul 2>&1 12 | 13 | :CHECK 14 | REM Check if serverstarter JAR is already downloaded 15 | IF NOT EXIST "%cd%\serverstarter-2.2.0.jar" ( 16 | ECHO serverstarter binary not found, downloading serverstarter... 17 | %SYSTEMROOT%\SYSTEM32\bitsadmin.exe /rawreturn /nowrap /transfer starter /dynamic /download /priority foreground https://github.com/NillerMedDild/ServerStarter/releases/download/v2.2.0/serverstarter-2.2.0.jar "%cd%\serverstarter-2.2.0.jar" 18 | GOTO MAIN 19 | ) ELSE ( 20 | GOTO MAIN 21 | ) 22 | 23 | :MAIN 24 | java -jar serverstarter-2.2.0.jar 25 | GOTO EOF 26 | 27 | :EOF 28 | pause -------------------------------------------------------------------------------- /.github/support.yml: -------------------------------------------------------------------------------- 1 | # Configuration for Support Requests - https://github.com/dessant/support-requests 2 | 3 | # Label used to mark issues as support requests 4 | supportLabel: "Support" 5 | 6 | # Comment to post on issues marked as support requests, `{issue-author}` is an 7 | # optional placeholder. Set to `false` to disable 8 | supportComment: > 9 | We use the issue tracker exclusively for bug reports, development and feature requests. 10 | However, this issue appears to be a support request. 11 | Please use the [support channel on our Discord](https://discord.gg/kZ7RdrD) to get help. 12 | 13 | 14 | # Close issues marked as support requests 15 | close: true 16 | 17 | # Lock issues marked as support requests 18 | lock: false 19 | 20 | # Assign `off-topic` as the reason for locking. Set to `false` to disable 21 | setLockReason: false 22 | 23 | # Repository to extend settings from 24 | # _extends: .github -------------------------------------------------------------------------------- /defaultconfigs/constructionwand-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #This is the Client config for ConstructionWand. 3 | #If you're not familiar with Forge's new split client/server config, let me explain: 4 | #Client config is stored in the /config folder and only contains client specific settings like graphics and keybinds. 5 | #Mod behavior is configured in the Server config, which is world-specific and thus located 6 | #in the /saves/myworld/serverconfig folder. If you want to change the serverconfig for all 7 | #new worlds, copy the config files in the /defaultconfigs folder. 8 | [keys] 9 | #Key code of OPTKEY (Default: Left Control). Look up key codes under https://www.glfw.org/docs/3.3/group__keys.html 10 | #Range: 0 ~ 350 11 | OptKey = 341 12 | #Press SNEAK+OPTKEY instead of SNEAK for changing wand mode/direction lock 13 | ShiftOpt = false 14 | #Press SNEAK+OPTKEY instead of SNEAK for opening wand GUI 15 | ShiftOptGUI = true 16 | 17 | -------------------------------------------------------------------------------- /config/ftbultimine.snbt: -------------------------------------------------------------------------------- 1 | # Configuration for FTB Ultimine that is common to both Clients and Servers 2 | # This file is used to control instance (e.g. modpack) specific things like mod integrations. 3 | # Changes to this file require you to restart the game! 4 | 5 | { 6 | # This is an advanced option, that you better leave alone This will stop ultimining on first block that it can't mine, rather than skipping it. 7 | # Default: false 8 | cancel_on_block_break_fail: false 9 | 10 | # This will stop mining if tool reaches X durability. It's possible it won't work with special tool types. 11 | # Default: 0 12 | # Range: 0 ~ 100 13 | prevent_tool_break: 0 14 | 15 | # (This only works if the mod 'Lost Trinkets' is installed!) 16 | # Adds a custom 'Ultiminer' trinket players will need to activate to be able to use Ultimine. 17 | # Make sure you disable the 'Octopick' trinket if this is enabled! 18 | # Default: false 19 | use_trinket: false 20 | } 21 | -------------------------------------------------------------------------------- /config/jei/recipe-category-sort-order.ini: -------------------------------------------------------------------------------- 1 | minecraft:crafting 2 | minecraft:smoking 3 | minecraft:blasting 4 | minecraft:brewing 5 | minecraft:campfire 6 | minecraft:smithing 7 | minecraft:fuel 8 | minecraft:furnace 9 | minecraft:stonecutting 10 | create:mechanical_crafting 11 | create:block_cutting 12 | create:crushing 13 | create:draining 14 | create:fan_blasting 15 | create:fan_smoking 16 | create:fan_washing 17 | create:milling 18 | create:mixing 19 | create:mystery_conversion 20 | create:packing 21 | create:pressing 22 | create:sandpaper_polishing 23 | create:sawing 24 | create:spout_filling 25 | create:wood_cutting 26 | jei:information 27 | cobblegenrandomizer:basalt_gen 28 | cobblegenrandomizer:cobble_gen 29 | cobblegenrandomizer:custom_gen 30 | cobblegenrandomizer:stone_gen 31 | minecraft:anvil 32 | create:automatic_brewing 33 | create:automatic_packing 34 | create:automatic_shaped 35 | create:automatic_shapeless 36 | create:deploying 37 | create:sequenced_assembly 38 | -------------------------------------------------------------------------------- /.github/move.yml: -------------------------------------------------------------------------------- 1 | # Configuration for move-issues - https://github.com/dessant/move-issues 2 | 3 | # Delete the command comment when it contains no other content 4 | deleteCommand: true 5 | 6 | # Close the source issue after moving 7 | closeSourceIssue: false 8 | 9 | # Lock the source issue after moving 10 | lockSourceIssue: false 11 | 12 | # Mention issue and comment authors 13 | mentionAuthors: false 14 | 15 | # Preserve mentions in the issue content 16 | keepContentMentions: false 17 | 18 | # Move labels that also exist on the target repository 19 | moveLabels: true 20 | 21 | # Set custom aliases for targets 22 | aliases: 23 | e2: enigmatica2 24 | e2l: enigmatica2light 25 | e2e: enigmatica2expert 26 | e2es: enigmatica2expertskyblock 27 | e3: enigmatica3 28 | e4: enigmatica4 29 | e5: enigmatica5 30 | e6: enigmatica6 31 | e6e: enigmatica6expert 32 | s: scientia 33 | 34 | # Repository to extend settings from 35 | _extends: .github 36 | -------------------------------------------------------------------------------- /defaultconfigs/betteradvancements-client.toml: -------------------------------------------------------------------------------- 1 | defaultUncompletedIconColor = "#FFFFFF" 2 | defaultUncompletedTitleColor = "#0489C1" 3 | defaultCompletedIconColor = "#DBA213" 4 | defaultCompletedTitleColor = "#DBA213" 5 | doAdvancementsBackgroundFade = true 6 | showDebugCoordinates = false 7 | orderTabsAlphabetically = false 8 | #Values below 50% might give odd results, use on own risk ;) 9 | #Range: 1 ~ 100 10 | uiScaling = 100 11 | #Lists the criteria for partially completed advancements, e.g. the biomes required for 'Adventuring Time' 12 | # Off: Vanilla default 13 | # Default: List which criteria you have already obtained 14 | # Spoiler: Only reveal unobtained criteria 15 | # All: Show both obtained and unobtained criteria 16 | criteriaDetail = "Default" 17 | criteriaDetailRequiresShift = false 18 | addInventoryButton = false 19 | defaultDrawDirectLines = false 20 | defaultHideLines = false 21 | defaultCompletedLineColor = "#FFFFFF" 22 | defaultUncompletedLineColor = "#FFFFFF" 23 | 24 | -------------------------------------------------------------------------------- /config/dynview-common.toml: -------------------------------------------------------------------------------- 1 | 2 | ["Dynamic Chunk View Distance Settings"] 3 | #The maximum chunk view distance allowed to use. Set to the max a player could benefit from. Default: 20 4 | #Range: 1 ~ 200 5 | maxChunkViewDist = 20 6 | #The average tick time to stabilize the chunk view distance around. Setting it higher than 50ms is not advised, as after 50ms the TPS will go below 20. Default: 45ms 7 | #Range: 10 ~ 100 8 | meanAvgTickTime = 45 9 | #The minimum chunk view distance allowed to use. Default: 4 10 | #Range: 3 ~ 200 11 | minChunkViewDist = 5 12 | #Whether to output log messages for actions done. This can be helpful to balance the other settings nicely. 13 | logMessages = false 14 | #The update frequency of average server tick time checks to update view distances. Default: 30sec 15 | #Range: 1 ~ 1000 16 | viewDistanceUpdateRate = 30 17 | 18 | ["Chunk slow unload settings"] 19 | #Enable slow chunk unloading(~1minute) after load, helps with mods hot-loading chunks frequently. Default: true 20 | chunkunload = true 21 | 22 | -------------------------------------------------------------------------------- /automation/settings.cfg: -------------------------------------------------------------------------------- 1 | ;SETTINGS FOR SERVERSTART SCRIPTS 2 | ;See "serverstart.log" in the LOGS subfolder 3 | ;For more details/help see: https://github.com/AllTheMods/Server-Scripts 4 | 5 | MAX_RAM=4G; 6 | JAVA_ARGS=-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 -Dusing.aikars.flags=https://mcflags.emc.gs -Daikars.new.flags=true -Dfml.readTimeout=180 -Dfml.queryResult=confirm; 7 | CRASH_COUNT=5; 8 | CRASH_TIMER=600; 9 | RUN_FROM_BAD_FOLDER=0; 10 | IGNORE_OFFLINE=0; 11 | IGNORE_JAVA_CHECK=0; 12 | USE_SPONGE=0; 13 | HIGH_CPU_PRIORITY=0; 14 | 15 | MODPACK_NAME=Create Together; 16 | MCVER=1.16.5; 17 | FORGEVER=36.2.22; 18 | FORGEURL=DISABLE; -------------------------------------------------------------------------------- /kubejs/client_scripts/jei_hide_items.js: -------------------------------------------------------------------------------- 1 | onEvent('jei.hide.items', (event) => { 2 | const items = [ 3 | /easypaxellite:(?!wood_paxel|stone_paxel|iron_paxel|golden_paxel|diamond_paxel|netherite_paxel)\w+/, 4 | 5 | /quark:\w+_shard/, 6 | /quark:limestone/, 7 | /quark:\w+_limestone/, 8 | 9 | /refinedstorage:(?!controller|cable|crafting_grid|external_storage)\w+/, 10 | 11 | /simplybackpacks:(?!common)\w+/, 12 | 13 | /theoneprobe:/ 14 | ]; 15 | 16 | items.forEach((item) => { 17 | event.hide(item); 18 | }); 19 | 20 | [ 21 | 'cyan', 22 | 'purple', 23 | 'blue', 24 | 'brown', 25 | 'green', 26 | 'red', 27 | 'black', 28 | 'white', 29 | 'orange', 30 | 'magenta', 31 | 'light_blue', 32 | 'yellow', 33 | 'lime', 34 | 'pink', 35 | 'gray', 36 | 'light_gray' 37 | ].forEach((color) => { 38 | event.hide('/refinedstorage:' + color + '\\w/'); 39 | }); 40 | }); 41 | -------------------------------------------------------------------------------- /config/storagedrawers-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [General] 3 | #List of rules in format "domain:item1, domain:item2, n". 4 | #Causes a compacting drawer convert n of item1 into 1 of item2. 5 | compactingRules = ["minecraft:clay, minecraft:clay_ball, 4"] 6 | enableUI = true 7 | debugTrace = false 8 | enableItemConversion = true 9 | enableSidedInput = true 10 | #The number of item stacks held in a basic unit of storage. 11 | #1x1 drawers hold 8 units, 1x2 drawers hold 4 units, 2x2 drawers hold 2 units. 12 | #Half-depth drawers hold half those amounts. 13 | baseStackStorage = 4 14 | enableExtraCompactingRules = true 15 | #Range: 1 ~ 50 16 | controllerRange = 12 17 | enableSidedOutput = true 18 | 19 | [StorageUpgrades] 20 | level2Mult = 4 21 | #Storage upgrades multiply storage capacity by the given amount. 22 | #When multiple storage upgrades are used together, their multipliers are added before being applied. 23 | level1Mult = 2 24 | level3Mult = 8 25 | level5Mult = 32 26 | level4Mult = 16 27 | 28 | [Integration] 29 | wailaStackRemainder = true 30 | 31 | -------------------------------------------------------------------------------- /config/serverconfigupdater-common.toml: -------------------------------------------------------------------------------- 1 | 2 | ["Add New Version"] 3 | #ModID's of the ServerConfigs that will be deleted when a world with a version lower than this version is loaded the first time. Comma Separated list. (ServerConfig without -server.toml) 4 | toDelete = "" 5 | #Version Number. VersionNumbers are simple Integers. Use a number larger than the last version. 6 | #Range: > 0 7 | newVersion = 0 8 | 9 | ["File Deleter"] 10 | #By default Folders are only deleted if they are empty. Set to true to change that. 11 | deleteFoldersWithContent = false 12 | #This is intended for deleting datapacks and/or craft tweaker scripts. The file will be deleted every launch if it exists! No access to saves or world folder. Specify the path to the file. Comma Separated List. Example: scripts/badscript.zs 13 | filesToDelete = "kubejs/server_scripts/exnihilosequentia/sieve.js,kubejs/server_scripts/exnihilosequentia/hammer.js" 14 | 15 | ["Version History"] 16 | #Editing these values will not affect any worlds that are already on that version. 17 | history = "1=buildinggadgets;2=refinedstorage;3=buildinggadgets;" 18 | 19 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.1.2.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.1.1⟶CreateTogether 1.1.2 2 | 3 | ## Added 4 | 5 | - [Default Options](https://www.curseforge.com/minecraft/mc-mods/default-options) 6 | - [FTB Chunks (Forge)](https://www.curseforge.com/minecraft/mc-mods/ftb-chunks-forge) 7 | - [FTB Library (Forge)](https://www.curseforge.com/minecraft/mc-mods/ftb-library-forge) 8 | - [FTB Teams (Forge)](https://www.curseforge.com/minecraft/mc-mods/ftb-teams-forge) 9 | - [Login Protection](https://www.curseforge.com/minecraft/mc-mods/login-protection) 10 | 11 | ## Updated 12 | 13 | ### [Enigmatic Graves](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves) ([EnigmaticGraves-1.2.jar](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves/files/3375803)⟶[EnigmaticGraves-1.3.jar](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves/files/3378499)) 14 | 15 | #### [EnigmaticGraves-1.3.jar](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves/files/3378499) 16 | 17 | Fixed curios inventory voiding items if your main inventory and curios inv is full on restoration. 18 | 19 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 20 | -------------------------------------------------------------------------------- /kubejs/README.txt: -------------------------------------------------------------------------------- 1 | Find more info on the website: https://kubejs.com/ 2 | 3 | Directory information: 4 | 5 | assets - Acts as a resource pack, you can put any client resources in here, like textures, models, etc. Example: assets/kubejs/textures/item/test_item.png 6 | data - Acts as a datapack, you can put any server resources in here, like loot tables, functions, etc. Example: data/kubejs/loot_tables/blocks/test_block.json 7 | 8 | startup_scripts - Scripts that get loaded once during game startup - Used for adding items and other things that can only happen while the game is loading (Can be reloaded with /kubejs reload_startup_scripts, but it may not work!) 9 | server_scripts - Scripts that get loaded every time server resources reload - Used for modifying recipes, tags, loot tables, and handling server events (Can be reloaded with /reload) 10 | client_scripts - Scripts that get loaded every time client resources reload - Used for JEI events, tooltips and other client side things (Can be reloaded with F3+T) 11 | 12 | config - KubeJS config storage. This is also the only directory that scripts can access other than world directory 13 | exported - Data dumps like texture atlases end up here 14 | 15 | You can find type-specific logs in logs/kubejs/ directory 16 | -------------------------------------------------------------------------------- /kubejs/server_scripts/recipes/create/mechanical_crafting.js: -------------------------------------------------------------------------------- 1 | onEvent('recipes', (event) => { 2 | const recipes = [ 3 | // { 4 | // output: 'create_stuff_additions:encased_jet_chestplate', 5 | // pattern: [' BDB ', ' BEB ', 'FBBBF', 'CFIFC'], 6 | // key: { 7 | // E: { 8 | // item: 'minecraft:elytra' 9 | // }, 10 | // D: { 11 | // item: 'quark:dragon_scale' 12 | // }, 13 | // B: { 14 | // item: 'create:brass_sheet' 15 | // }, 16 | // C: { 17 | // item: 'create:cogwheel' 18 | // }, 19 | // F: { 20 | // item: 'create:encased_fan' 21 | // }, 22 | // I: { 23 | // item: 'create:integrated_circuit' 24 | // } 25 | // }, 26 | // id: 'create_stuff_additions:encased_jet_chestplate' 27 | // } 28 | ]; 29 | 30 | recipes.forEach((recipe) => { 31 | event.recipes.create.mechanical_crafting(recipe.output, recipe.pattern, recipe.key).id(recipe.id); 32 | }); 33 | }); 34 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.0.2.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.0.1⟶CreateTogether 1.0.2 2 | 3 | ## Added 4 | 5 | * [Architectury API (Forge)](https://www.curseforge.com/minecraft/mc-mods/architectury-forge) 6 | * [Biome Id Fixer (Forge)](https://www.curseforge.com/minecraft/mc-mods/biome-id-fixer) 7 | * [Chocolate Fix](https://www.curseforge.com/minecraft/mc-mods/chocolate-fix) 8 | * [Cloth Config API (Forge)](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge) 9 | * [CobbleGenRandomizer](https://www.curseforge.com/minecraft/mc-mods/cobblegenrandomizer) 10 | * [CookieCore](https://www.curseforge.com/minecraft/mc-mods/cookiecore) 11 | * [Ex Nihilo: Sequentia](https://www.curseforge.com/minecraft/mc-mods/ex-nihilo-sequentia) 12 | * [FTB Ultimine (Forge)](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge) 13 | * [KubeJS (Forge)](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge) 14 | * [KubeJS Create](https://www.curseforge.com/minecraft/mc-mods/kubejs-create) 15 | * [Magic Feather](https://www.curseforge.com/minecraft/mc-mods/magic-feather) 16 | * [Refined Storage](https://www.curseforge.com/minecraft/mc-mods/refined-storage) 17 | * [Rhino](https://www.curseforge.com/minecraft/mc-mods/rhino) 18 | 19 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 20 | -------------------------------------------------------------------------------- /config/ferritecore-mixin.toml: -------------------------------------------------------------------------------- 1 | #Use a slightly more compact, but also slightly slower representation for block states 2 | compactFastMap = false 3 | #Cache the predicate instances used in multipart models 4 | cacheMultipartPredicates = true 5 | #Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled 6 | multipartDeduplication = true 7 | #Deduplicate cached data for blockstates, most importantly collision and render shapes 8 | blockstateCacheDeduplication = true 9 | #Avoid creation of new strings when creating ModelResourceLocations 10 | modelResourceLocations = true 11 | #Replace the blockstate neighbor table 12 | replaceNeighborLookup = true 13 | #Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled 14 | replacePropertyMap = true 15 | #Deduplicate vertex data of baked quads in the basic model implementations 16 | bakedQuadDeduplication = true 17 | #Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. 18 | populateNeighborTable = false 19 | #Do not keep already-parsed NBT data for partially loaded chunks in memory 20 | reducedChunkNBT = true 21 | 22 | -------------------------------------------------------------------------------- /config/forge-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #Client only settings, mostly things related to rendering 3 | [client] 4 | #Disable culling of hidden faces next to stairs and slabs. Causes extra rendering, but may fix some resource packs that exploit this vanilla mechanic. 5 | disableStairSlabCulling = false 6 | #Toggle off to make missing model text in the gui fit inside the slot. 7 | zoomInMissingModelTextInGui = false 8 | #Enable Forge to queue all chunk updates to the Chunk Update thread. 9 | #May increase FPS significantly, but may also cause weird rendering lag. 10 | #Not recommended for computers without a significant number of cores available. 11 | alwaysSetupTerrainOffThread = false 12 | #EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models. 13 | experimentalForgeLightPipelineEnabled = true 14 | #Enable the Forge block rendering pipeline - fixes the lighting of custom models. 15 | forgeLightPipelineEnabled = true 16 | #When enabled, Forge will show any warnings that occurred during loading. 17 | showLoadWarnings = true 18 | #Enable uploading cloud geometry to the GPU for faster rendering. 19 | forgeCloudsEnabled = true 20 | #When enabled, makes specific reload tasks such as language changing quicker to run. 21 | selectiveResourceReloadEnabled = true 22 | #Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. 23 | useCombinedDepthStencilAttachment = false 24 | 25 | -------------------------------------------------------------------------------- /server_files/start-server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | DO_RAMDISK=0 3 | if [[ $(cat server-setup-config.yaml | grep 'ramDisk:' | awk 'BEGIN {FS=":"}{print $2}') =~ "yes" ]]; then 4 | SAVE_DIR=$(cat server.properties | grep 'level-name' | awk 'BEGIN {FS="="}{print $2}') 5 | mv "$SAVE_DIR" "${SAVE_DIR}_backup" 6 | mkdir "$SAVE_DIR" 7 | sudo mount -t tmpfs -o size=2G tmpfs "$SAVE_DIR" 8 | DO_RAMDISK=1 9 | fi 10 | if [ -f serverstarter-2.2.0.jar ]; then 11 | echo "Skipping download. Using existing serverstarter-2.2.0.jar" 12 | java -jar serverstarter-2.2.0.jar 13 | if [[ $DO_RAMDISK -eq 1 ]]; then 14 | sudo umount "$SAVE_DIR" 15 | rm -rf "$SAVE_DIR" 16 | mv "${SAVE_DIR}_backup" "$SAVE_DIR" 17 | fi 18 | exit 0 19 | else 20 | export URL="https://github.com/NillerMedDild/ServerStarter/releases/download/v2.2.0/serverstarter-2.2.0.jar" 21 | fi 22 | echo $URL 23 | if command -v wget >>/dev/null; then 24 | echo "DEBUG: (wget) Downloading ${URL}" 25 | wget -O serverstarter-2.2.0.jar "${URL}" 26 | else 27 | if command -v curl >>/dev/null; then 28 | echo "DEBUG: (curl) Downloading ${URL}" 29 | curl -L -o serverstarter-2.2.0.jar "${URL}" 30 | else 31 | echo "Neither wget or curl were found on your system. Please install one and try again" 32 | fi 33 | fi 34 | java -jar serverstarter-2.2.0.jar 35 | if [[ $DO_RAMDISK -eq 1 ]]; then 36 | sudo umount "$SAVE_DIR" 37 | rm -rf "$SAVE_DIR" 38 | mv "${SAVE_DIR}_backup" "$SAVE_DIR" 39 | fi -------------------------------------------------------------------------------- /defaultconfigs/ftbchunks.snbt: -------------------------------------------------------------------------------- 1 | { 2 | # Forced modes won't let players change their ally settings 3 | # Default: "default" 4 | # Valid values: "default", "forced_all", "forced_none" 5 | ally_mode: "default" 6 | 7 | # Allow players to load chunks while they are offline 8 | # Default: true 9 | chunk_load_offline: false 10 | 11 | # Blacklist for dimensions where chunks can't be claimed. Add "minecraft:the_end" to this list if you want to disable chunk claiming in The End 12 | # Default: [] 13 | claim_dimension_blacklist: [ ] 14 | 15 | # Disables fake players like miners and auto-clickers 16 | # Default: false 17 | disable_all_fake_players: false 18 | 19 | # Disables all land protection. Useful for private servers where everyone is trusted and claims are only used for forceloading 20 | # Default: false 21 | disable_protection: false 22 | 23 | # Max claimed chunks. 24 | # You can override this with FTB Ranks 'ftbchunks.max_claimed' permission 25 | # Default: 500 26 | # Range: -∞ ~ +∞ 27 | max_claimed_chunks: 500 28 | 29 | # Max force loaded chunks. 30 | # You can override this with FTB Ranks 'ftbchunks.max_force_loaded' permission 31 | # Default: 25 32 | # Range: -∞ ~ +∞ 33 | max_force_loaded_chunks: 5 34 | 35 | # Requires you to claim chunks in order to edit and interact with blocks 36 | # Default: false 37 | no_wilderness: false 38 | 39 | # Patches vanilla chunkloading to allow random block ticks and other environment updates in chunks where no players are nearby. With this off farms and other things won't work. Disable in case this causes issues 40 | # Default: true 41 | patch_chunk_loading: true 42 | } 43 | -------------------------------------------------------------------------------- /config/enigmaticgraves-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #How the grave data is handled 3 | [data] 4 | #Defines how the experience should be handled when the player dies. 5 | #DROP: Drops the xp as normal. 6 | #REMOVE: Doesn't drop or restore the xp. Effectively removes it on death. 7 | #KEEP_VANILLA: Stores the same amount of xp that would've been dropped normally into the grave. 8 | #KEEP_ALL: Stores all the players xp in the graves to restore it. 9 | #Allowed Values: DROP, REMOVE, KEEP_VANILLA, KEEP_ALL 10 | experienceHandling = "KEEP_VANILLA" 11 | #Defines the amount of entries per player that can be stored to retrieve using commands. 12 | #Once the entry count overflows, the oldest entries will be removed. 13 | #Range: 1 ~ 99 14 | graveEntryCount = 10 15 | 16 | #Grave Spawn Place Handling 17 | #The grave will first scan down from the death position until it finds a solid block to place the grave on. 18 | #If there is no solid block below the death position, it will attempt to scan from the 'scanHeight' value 19 | #It will scan up to +-'scanRange' in attempt to find a solid block with 2 air blocks above it to spawn the grave on. 20 | #If it fails to find a place, it will then either: 21 | # - Place a block at y=1 with the grave on top, if the 'scanHeight' were filled with block 22 | # - Place a block at y='scanHeight' with the grave on top, if the 'scanHeight' were filled with air 23 | [position] 24 | #The scanning start position for a valid place to spawn 25 | #Range: 0 ~ 255 26 | scanHeight = 60 27 | #The vertical range (up/down) from the initial position to scan for a valid spot to place a grave 28 | #Range: 0 ~ 255 29 | scanRange = 10 30 | #The block that should spawn below the grave if there is none 31 | floorBlock = "minecraft:dirt" 32 | 33 | #Misc Options 34 | [misc] 35 | #Should you get a grave finder item after you respawn? 36 | spawnGraveFinder = true 37 | 38 | -------------------------------------------------------------------------------- /server_files/server-guide.txt: -------------------------------------------------------------------------------- 1 | # Installation 2 | 3 | 4 | 1. Run the start-server script and wait for it to complete. It will download mods, configs etc. 5 | - When the installation is complete, you should see a prompt to accept the EULA. 6 | - .bat files are for Windows, .sh are for Mac / Linux. 7 | - Make sure you do not have this in OneDrive or another synced folder, as those can lock up the installer. 8 | 2. Once you accept the EULA, the server will start running. Startup will typically take 3-5 minutes. 9 | 3. When the server has started fully, close the window. 10 | - This works around a known issue where you cannot type in the console the first time you start the server. 11 | 12 | # Updating 13 | 14 | ## If you are hosting the pack yourself 15 | 16 | 1. Follow the Installation steps above. 17 | 2. Stop the server. 18 | 3. Delete the world folder. 19 | 4. Copy the world folder from your old installation to the new. 20 | - Remember to reapply any changes you have made to configs, whitelist, server.properties etc. 21 | 5. Start the server. 22 | 23 | ## If you're using a server host 24 | 25 | 1. Follow the Installation steps above. 26 | 2. Stop the server. 27 | 3. Delete the Forge jar and the following folders from the server: 28 | - configs 29 | - defaultconfigs 30 | - libraries 31 | - mods 32 | 4. Upload the Forge jar and the list of folders from the new server folder to your server. 33 | - Remember to reapply any changes you have made to configs, mods etc. 34 | 5. Start the server. 35 | 36 | 37 | **If your old server contains the file `server-setup-config.yaml`, you should also:** 38 | 39 | * Delete the following files from the server: 40 | - server-setup-config.yaml 41 | - serverstarter.lock 42 | - startserver.bat 43 | - startserver.sh 44 | * Upload those same files from the new server folder. 45 | 46 | _Most server hosts launch the server with the Forge jar. Steps 5-6 are only needed for server hosts that use the serverstarter script._ -------------------------------------------------------------------------------- /changelogs/modlist_1.0.0.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.0.0 2 | - [AutoRegLib-1.6-47.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/3128555) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 3 | - [BetterAdvancements-1.16.5-0.1.0.105](https://www.curseforge.com/minecraft/mc-mods/better-advancements/3218942) (by [way2muchnoise](https://www.curseforge.com/members/way2muchnoise/projects)) 4 | - [buildinggadgets-1.16.5-3.8.0.jar](https://www.curseforge.com/minecraft/mc-mods/building-gadgets/3205295) (by [Direwolf20](https://www.curseforge.com/members/direwolf20/projects)) 5 | - [constructionwand-1.16.5-2.2.jar](https://www.curseforge.com/minecraft/mc-mods/construction-wand/3285196) (by [ThetaDev](https://www.curseforge.com/members/thetadev/projects)) 6 | - [Create 1.16.4+ v0.3.1c](https://www.curseforge.com/minecraft/mc-mods/create/3278516) (by [simibubi](https://www.curseforge.com/members/simibubi/projects)) 7 | - [DrawersTooltip-1.16.2-2.1.0.jar](https://www.curseforge.com/minecraft/mc-mods/drawers-tooltip/3035686) (by [Snownee_](https://www.curseforge.com/members/snownee_/projects)) 8 | - [dynviewdist-1.9.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/3217166) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 9 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 10 | - [jei-1.16.5-7.6.4.90.jar](https://www.curseforge.com/minecraft/mc-mods/jei/3295418) (by [mezz](https://www.curseforge.com/members/mezz/projects)) 11 | - [PackMenu-1.16.4-2.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/packmenu/3292171) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 12 | - [Placebo-1.16.4-4.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/3281276) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 13 | - [Quark-r2.4-311.jar](https://www.curseforge.com/minecraft/mc-mods/quark/3282239) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 14 | - [StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/3180569) (by [Texelsaur](https://www.curseforge.com/members/texelsaur/projects)) 15 | -------------------------------------------------------------------------------- /changelogs/modlist_1.0.1.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.0.1 2 | - [AutoRegLib-1.6-47.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/3128555) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 3 | - [BetterAdvancements-1.16.5-0.1.0.105](https://www.curseforge.com/minecraft/mc-mods/better-advancements/3218942) (by [way2muchnoise](https://www.curseforge.com/members/way2muchnoise/projects)) 4 | - [buildinggadgets-1.16.5-3.8.0.jar](https://www.curseforge.com/minecraft/mc-mods/building-gadgets/3205295) (by [Direwolf20](https://www.curseforge.com/members/direwolf20/projects)) 5 | - [constructionwand-1.16.5-2.2.jar](https://www.curseforge.com/minecraft/mc-mods/construction-wand/3285196) (by [ThetaDev](https://www.curseforge.com/members/thetadev/projects)) 6 | - [Create 1.16.4+ v0.3.1c](https://www.curseforge.com/minecraft/mc-mods/create/3278516) (by [simibubi](https://www.curseforge.com/members/simibubi/projects)) 7 | - [DrawersTooltip-1.16.2-2.1.0.jar](https://www.curseforge.com/minecraft/mc-mods/drawers-tooltip/3035686) (by [Snownee_](https://www.curseforge.com/members/snownee_/projects)) 8 | - [dynviewdist-1.9.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/3217166) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 9 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 10 | - [jei-1.16.5-7.6.4.90.jar](https://www.curseforge.com/minecraft/mc-mods/jei/3295418) (by [mezz](https://www.curseforge.com/members/mezz/projects)) 11 | - [PackMenu-1.16.4-2.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/packmenu/3292171) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 12 | - [Placebo-1.16.4-4.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/3281276) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 13 | - [Quark-r2.4-311.jar](https://www.curseforge.com/minecraft/mc-mods/quark/3282239) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 14 | - [StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/3180569) (by [Texelsaur](https://www.curseforge.com/members/texelsaur/projects)) 15 | -------------------------------------------------------------------------------- /config/defaultoptions/options.txt: -------------------------------------------------------------------------------- 1 | version:2586 2 | autoJump:true 3 | autoSuggestions:true 4 | chatColors:true 5 | chatLinks:true 6 | chatLinksPrompt:true 7 | enableVsync:true 8 | entityShadows:true 9 | forceUnicodeFont:false 10 | discrete_mouse_scroll:false 11 | invertYMouse:false 12 | realmsNotifications:true 13 | reducedDebugInfo:false 14 | snooperEnabled:false 15 | showSubtitles:false 16 | touchscreen:false 17 | fullscreen:false 18 | bobView:true 19 | toggleCrouch:false 20 | toggleSprint:false 21 | mouseSensitivity:0.5 22 | fov:0.0 23 | screenEffectScale:1.0 24 | fovEffectScale:1.0 25 | gamma:0.0 26 | renderDistance:12 27 | entityDistanceScaling:1.0 28 | guiScale:3 29 | particles:0 30 | maxFps:120 31 | difficulty:2 32 | graphicsMode:1 33 | ao:2 34 | biomeBlendRadius:2 35 | renderClouds:true 36 | resourcePacks:["vanilla","mod_resources","kubejs:resource_pack","packmenu","quark:emote_resources"] 37 | incompatibleResourcePacks:["quark:emote_resources"] 38 | lastServer: 39 | lang:en_us 40 | chatVisibility:0 41 | chatOpacity:1.0 42 | chatLineSpacing:0.0 43 | textBackgroundOpacity:0.5 44 | backgroundForChatOnly:true 45 | hideServerAddress:false 46 | advancedItemTooltips:true 47 | pauseOnLostFocus:true 48 | overrideWidth:0 49 | overrideHeight:0 50 | heldItemTooltips:true 51 | chatHeightFocused:1.0 52 | chatDelay: 0.0 53 | chatHeightUnfocused:0.44366195797920227 54 | chatScale:1.0 55 | chatWidth:1.0 56 | mipmapLevels:4 57 | useNativeTransport:true 58 | mainHand:right 59 | attackIndicator:1 60 | narrator:0 61 | tutorialStep:none 62 | mouseWheelSensitivity:1.0 63 | rawMouseInput:true 64 | glDebugVerbosity:1 65 | skipMultiplayerWarning:false 66 | hideMatchedNames:true 67 | joinedFirstServer:true 68 | syncChunkWrites:false 69 | soundCategory_master:0.022075055 70 | soundCategory_music:1.0 71 | soundCategory_record:1.0 72 | soundCategory_weather:1.0 73 | soundCategory_block:1.0 74 | soundCategory_hostile:1.0 75 | soundCategory_neutral:1.0 76 | soundCategory_player:1.0 77 | soundCategory_ambient:1.0 78 | soundCategory_voice:1.0 79 | modelPart_cape:true 80 | modelPart_jacket:true 81 | modelPart_left_sleeve:true 82 | modelPart_right_sleeve:true 83 | modelPart_left_pants_leg:true 84 | modelPart_right_pants_leg:true 85 | modelPart_hat:true 86 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.0.8.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.0.7⟶CreateTogether 1.0.8 2 | 3 | ## Updated 4 | 5 | ### [Just Enough Items (JEI)](https://www.curseforge.com/minecraft/mc-mods/jei) ([jei-1.16.5-7.7.0.101.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3327383)⟶[jei-1.16.5-7.7.0.103.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3335737)) 6 | 7 | #### [Just Enough Items (JEI) 7.7.0](https://www.curseforge.com/minecraft/mc-mods/jei/files/3335737) 8 | 9 | * [Update es_es.json (#2373)](https://github.com/mezz/JustEnoughItems/commit/d778e8c87818db8600e9ba23dbb1c5653f52fc60) - Franco Paladini 10 | * [Fix reloading not working properly on servers (#2366)](https://github.com/mezz/JustEnoughItems/commit/48045cf21915e7239a0f735a60c433b38b2512cb) - Sara Freimer 11 | 12 | ### [KubeJS (Forge)](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge) ([kubejs-1605.3.10-build.8-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3320816)⟶[kubejs-forge-1605.3.10-build.16.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3334911)) 13 | 14 | #### [kubejs-forge-1605.3.10-build.16.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3334911) 15 | 16 | * Fixed items on cooldown still getting block.rightclick and item.rightclick events - LatvianModder 17 | * Added player.airSupply and player.maxAirSupply - LatvianModder 18 | * Updated maven link - LatvianModder 19 | * Added RayTraceResultJS, helper methods for armor and potions in entities - LatvianModder 20 | * Added entity.inWater and entity.underWater - LatvianModder 21 | * Added block.biomeId - LatvianModder 22 | * Added block.biomeId - LatvianModder 23 | 24 | ### [Placebo](https://www.curseforge.com/minecraft/mc-mods/placebo) ([Placebo-1.16.4-4.4.5.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3314315)⟶[Placebo-1.16.4-4.5.0.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3331459)) 25 | 26 | #### [Placebo-1.16.4-4.5.0.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3331459) 27 | 28 | Made it so the StackLootEntry can be serialized and deserialized properly. 29 | 30 | Added Patreon Wings for $10 patrons. 31 | 32 | Added buttons to individually disable Trails and Wings. 33 | 34 | ## Removed 35 | 36 | * [Create : Stuff Additions](https://www.curseforge.com/minecraft/mc-mods/create-stuff-additions) 37 | 38 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 39 | -------------------------------------------------------------------------------- /defaultconfigs/theoneprobe-common.toml: -------------------------------------------------------------------------------- 1 | #If true show the color of the collar of a wolf 2 | showCollarColor = true 3 | #The maximum amount of slots (empty or not) to show without sneaking 4 | #Range: 0 ~ 1000 5 | showSmallChestContentsWithoutSneaking = 3 6 | #How much time (ms) to wait before reporting an exception again 7 | #Range: 1 ~ 10000000 8 | loggingThrowableTimeout = 20000 9 | #If true equal stacks will be compacted in the chest contents overlay 10 | compactEqualStacks = true 11 | #Alternate color for the tank bar 12 | tankbarAlternateFilledColor = "ff000043" 13 | #How to display tank contents: 0 = do not show, 1 = show in a bar, 2 = show as text 14 | #Range: 0 ~ 2 15 | showTank = 1 16 | #If true there will be a readme note for first-time players 17 | spawnNote = false 18 | #A list of blocks for which we don't show chest contents automatically except if sneaking 19 | dontShowContentsUnlessSneaking = [] 20 | #Format for displaying RF 21 | rfFormat = "COMPACT" 22 | #If true the probe will automatically show extended information if it is in your main hand (so not required to sneak) 23 | extendedInMain = false 24 | #Color for the RF bar 25 | rfbarFilledColor = "ffdd0000" 26 | #Color for the tank bar border 27 | tankbarBorderColor = "ff555555" 28 | #Color for the RF bar border 29 | rfbarBorderColor = "ff555555" 30 | #A list of blocks for which we automatically show chest contents even if not sneaking 31 | showContentsWithoutSneaking = ["storagedrawers:basicdrawers", "storagedrawersextra:extra_drawers"] 32 | #If true show debug info with creative probe 33 | showDebugInfo = true 34 | #Format for displaying tank contents 35 | tankFormat = "COMPACT" 36 | #How to display RF: 0 = do not show, 1 = show in a bar, 2 = show as text 37 | #Range: 0 ~ 2 38 | showRF = 1 39 | #If true there will be a bauble version of the probe if baubles is present 40 | supportBaubles = true 41 | #Alternate color for the RF bar 42 | rfbarAlternateFilledColor = "ff430000" 43 | #If the number of items in an inventory is lower or equal then this number then more info is shown 44 | #Range: 0 ~ 20 45 | showItemDetailThresshold = 4 46 | #Is the probe needed to show the tooltip? 0 = no, 1 = yes, 2 = yes and clients cannot override, 3 = probe needed for extended info only 47 | #Range: 0 ~ 3 48 | needsProbe = 0 49 | #Color for the tank bar 50 | tankbarFilledColor = "ff0000dd" 51 | #A list of blocks for which we don't send NBT over the network. This is mostly useful for blocks that have HUGE NBT in their pickblock (itemstack) 52 | dontSendNBT = [] 53 | 54 | -------------------------------------------------------------------------------- /defaultconfigs/entity_culling-client.toml: -------------------------------------------------------------------------------- 1 | #Requires restart. Ram usage (in Bytes) = ((x * 16 * 2) ^ 3) / 4 2 | #Range: 1 ~ 32 3 | cacheSize = 12 4 | #No comment 5 | debug = false 6 | #Disable all changes from this mod. 7 | enabled = true 8 | #Skip rendering of entities that are not visible (hidden behind blocks). Bosses will be rendered normally. This might cause issues where an entity is partly behind a block and thus does not get rendered but it's usually not really noticable. 9 | skipHiddenEntityRendering = true 10 | #Entities with a width or height greater than this value will always get rendered. 11 | #Range: 0.0 ~ 128.0 12 | skipHiddenEntityRenderingSize = 128.0 13 | #Entities which will always be rendered. (Format: 'modid:entity_name') 14 | skipHiddenEntityRenderingBlacklist = [] 15 | #Skip rendering of entities that are not visible (hidden behind blocks). This might cause issues where a tile entity is partly behind a block and thus does not get rendered but it's usually not really noticable. 16 | skipHiddenTileEntityRendering = true 17 | #Tile entities with a width or height greater than this value will always get rendered. 18 | #Range: 0.0 ~ 128.0 19 | skipHiddenTileEntityRenderingSize = 128.0 20 | #Tile entities which will always be rendered. (Format: 'modid:tile_entity_name') 21 | skipHiddenTileEntityRenderingBlacklist = ["travel_anchors:travel_anchor"] 22 | 23 | #No comment 24 | [optifineShaderOptions] 25 | #No comment 26 | entityShadowsCulling = true 27 | #No comment 28 | entityShadowsCullingLessAggressiveMode = true 29 | #No comment 30 | #Range: 0.0 ~ 32.0 31 | entityShadowsCullingLessAggressiveModeDiff = 4.0 32 | #No comment 33 | entityShadowsEnabled = true 34 | #No comment 35 | entityShadowsDistanceLimited = true 36 | #No comment 37 | #Range: 0.0 ~ 64.0 38 | entityShadowsMaxDistance = 4.0 39 | #No comment 40 | terrainShadowsEnabled = true 41 | #No comment 42 | terrainShadowsDistanceLimited = true 43 | #No comment 44 | #Range: 0.0 ~ 64.0 45 | terrainShadowsMaxHorizontalDistance = 8.0 46 | #No comment 47 | #Range: 0.0 ~ 64.0 48 | terrainShadowsMaxVerticalDistance = 4.0 49 | #No comment 50 | tileEntityShadowsCulling = true 51 | #No comment 52 | tileEntityShadowsCullingLessAggressiveMode = true 53 | #No comment 54 | #Range: 0.0 ~ 32.0 55 | tileEntityShadowsCullingLessAggressiveModeDiff = 4.0 56 | #No comment 57 | tileEntityShadowsEnabled = true 58 | #No comment 59 | tileEntityShadowsDistanceLimited = true 60 | #No comment 61 | #Range: 0.0 ~ 64.0 62 | tileEntityShadowsMaxDistance = 4.0 63 | 64 | -------------------------------------------------------------------------------- /defaultconfigs/jei-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [advanced] 3 | #How items should be handed to you 4 | #Allowed Values: INVENTORY, MOUSE_PICKUP 5 | GiveMode = "MOUSE_PICKUP" 6 | #Debug mode enabled 7 | DebugMode = false 8 | #Display search bar in the center 9 | CenterSearch = false 10 | #Max. recipe gui height 11 | #Range: > 175 12 | RecipeGuiHeight = 350 13 | #Set low-memory mode (makes search very slow, but uses less RAM) 14 | LowMemorySlowSearchEnabled = false 15 | #Max number of columns shown 16 | #Range: 4 ~ 100 17 | MaxColumns = 100 18 | 19 | [colors] 20 | #Color values to search for 21 | SearchColors = ["White:EEEEEE", "LightBlue:7492cc", "Cyan:00EEEE", "Blue:2222dd", "LapisBlue:25418b", "Teal:008080", "Yellow:cacb58", "GoldenYellow:EED700", "Orange:d97634", "Pink:D1899D", "HotPink:FC0FC0", "Magenta:b24bbb", "Purple:813eb9", "JadedPurple:43324f", "EvilPurple:2e1649", "Lavender:B57EDC", "Indigo:480082", "Sand:dbd3a0", "Tan:bb9b63", "LightBrown:A0522D", "Brown:634b33", "DarkBrown:3a2d13", "LimeGreen:43b239", "SlimeGreen:83cb73", "Green:008000", "DarkGreen:224d22", "GrassGreen:548049", "Red:963430", "BrickRed:b0604b", "NetherBrick:2a1516", "Redstone:ce3e36", "Black:181515", "CharcoalGray:464646", "IronGray:646464", "Gray:808080", "Silver:C0C0C0"] 22 | 23 | [sorting] 24 | #Sorting order for the ingredient list. Valid stages: [MOD_NAME, INGREDIENT_TYPE, ALPHABETICAL, CREATIVE_MENU] 25 | IngredientSortStages = ["MOD_NAME", "INGREDIENT_TYPE", "CREATIVE_MENU"] 26 | 27 | [search] 28 | #Search mode for Mod Names (prefix: @) 29 | #Allowed Values: ENABLED, REQUIRE_PREFIX, DISABLED 30 | ModNameSearchMode = "REQUIRE_PREFIX" 31 | #Search mode for Tag Names (prefix: $) 32 | #Allowed Values: ENABLED, REQUIRE_PREFIX, DISABLED 33 | TagSearchMode = "REQUIRE_PREFIX" 34 | #Search mode for Creative Tab Names (prefix: %) 35 | #Allowed Values: ENABLED, REQUIRE_PREFIX, DISABLED 36 | CreativeTabSearchMode = "DISABLED" 37 | #Search mode for Colors (prefix: ^) 38 | #Allowed Values: ENABLED, REQUIRE_PREFIX, DISABLED 39 | ColorSearchMode = "DISABLED" 40 | #Search mode for resources IDs (prefix: &) 41 | #Allowed Values: ENABLED, REQUIRE_PREFIX, DISABLED 42 | ResourceIdSearchMode = "DISABLED" 43 | #Search mode for Tooltips (prefix: #) 44 | #Allowed Values: ENABLED, REQUIRE_PREFIX, DISABLED 45 | TooltipSearchMode = "ENABLED" 46 | #Search advanced tooltips (visible with F3+H) 47 | SearchAdvancedTooltips = false 48 | 49 | [modname] 50 | #Formatting for mod name tooltip 51 | #Use these formatting keys: 52 | #black, dark_blue, dark_green, dark_aqua, dark_red, dark_purple, gold, gray, dark_gray, blue, green, aqua, red, light_purple, yellow, white 53 | #obfuscated, bold, strikethrough, underline, italic 54 | ModNameFormat = "blue italic" 55 | 56 | -------------------------------------------------------------------------------- /kubejs/data/minecraft/loot_tables/entities/husk.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "functions": [ 10 | { 11 | "function": "minecraft:set_count", 12 | "count": { 13 | "min": 0.0, 14 | "max": 2.0, 15 | "type": "minecraft:uniform" 16 | } 17 | }, 18 | { 19 | "function": "minecraft:looting_enchant", 20 | "count": { 21 | "min": 0.0, 22 | "max": 1.0 23 | } 24 | } 25 | ], 26 | "name": "minecraft:rotten_flesh" 27 | } 28 | ] 29 | }, 30 | { 31 | "rolls": 1, 32 | "entries": [ 33 | { 34 | "type": "minecraft:item", 35 | "functions": [ 36 | { 37 | "function": "minecraft:set_count", 38 | "count": { 39 | "min": 0.0, 40 | "max": 2.0, 41 | "type": "minecraft:uniform" 42 | } 43 | }, 44 | { 45 | "function": "minecraft:looting_enchant", 46 | "count": { 47 | "min": 0.0, 48 | "max": 1.0 49 | } 50 | } 51 | ], 52 | "name": "minecraft:sand" 53 | } 54 | ] 55 | }, 56 | { 57 | "rolls": 1, 58 | "entries": [ 59 | { 60 | "type": "minecraft:item", 61 | "name": "minecraft:iron_ingot" 62 | }, 63 | { 64 | "type": "minecraft:item", 65 | "name": "minecraft:carrot" 66 | }, 67 | { 68 | "type": "minecraft:item", 69 | "name": "minecraft:potato" 70 | } 71 | ], 72 | "conditions": [ 73 | { 74 | "condition": "minecraft:killed_by_player" 75 | }, 76 | { 77 | "condition": "minecraft:random_chance_with_looting", 78 | "chance": 0.025, 79 | "looting_multiplier": 0.01 80 | } 81 | ] 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.0.9.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.0.8⟶CreateTogether 1.0.9 2 | 3 | ## Updated 4 | 5 | ### [FTB Ultimine (Forge)](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge) ([ftb-ultimine-1605.2.0-build.26-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3269868)⟶[ftb-ultimine-forge-1605.2.2-build.4.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3337104)) 6 | 7 | #### [ftb-ultimine-forge-1605.2.2-build.4.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3337104) 8 | 9 | * Oops. Fixed build number - LatvianModder 10 | 11 | #### [1 more entry](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/all) 12 | 13 | ### [Just Enough Items (JEI)](https://www.curseforge.com/minecraft/mc-mods/jei) ([jei-1.16.5-7.7.0.103.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3335737)⟶[jei-1.16.5-7.7.0.104.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3338427)) 14 | 15 | #### [Just Enough Items (JEI) 7.7.0](https://www.curseforge.com/minecraft/mc-mods/jei/files/3338427) 16 | 17 | * [Add sorting options including Tools and Weapons (#2363)](https://github.com/mezz/JustEnoughItems/commit/7b2369a6fbf2606503a5bfb78364bbabcfc8d819) - IMarvinTPA 18 | 19 | ### [KubeJS (Forge)](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge) ([kubejs-forge-1605.3.10-build.16.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3334911)⟶[kubejs-forge-1605.3.10-build.18.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3337078)) 20 | 21 | #### [kubejs-forge-1605.3.10-build.18.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3337078) 22 | 23 | * Using 'minecraft:air' as key in shaped recipe will work now - LatvianModder 24 | * Added .asKJS() for vanilla entities and worlds. Useful when listening to forge events or overriding other mod things that dont support KJS - LatvianModder 25 | * Added settings.useOriginalRecipeForFilters = true. Set it to false in case you get issues with unification scripts etc. - LatvianModder 26 | 27 | ### [SuperMartijn642's Core Lib](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib) ([supermartijn642corelib-1.0.4-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/3328612)⟶[supermartijn642corelib-1.0.5-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/3336261)) 28 | 29 | #### [supermartijn642corelib-1.0.5-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/3336261) 30 | 31 | * Added a new packet system overtop Forge's 32 | * Removed the requirement to implement ObjectBaseScreen#renderTooltips and ObjectBaseContainerScreen#renderTooltips 33 | 34 | #### [1 more entry](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/all) 35 | 36 | ## Removed 37 | 38 | * [FastSuite](https://www.curseforge.com/minecraft/mc-mods/fastsuite) 39 | 40 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 41 | -------------------------------------------------------------------------------- /kubejs/server_scripts/recipes/shaped.js: -------------------------------------------------------------------------------- 1 | onEvent('recipes', (event) => { 2 | const recipes = [ 3 | { 4 | output: 'refinedstorage:external_storage', 5 | pattern: ['ADA', 'BCB', 'ADA'], 6 | key: { 7 | A: 'create:andesite_alloy', 8 | B: '#forge:chests', 9 | C: 'refinedstorage:cable', 10 | D: 'minecraft:observer' 11 | }, 12 | id: 'refinedstorage:external_storage' 13 | }, 14 | { 15 | output: 'refinedstorage:controller', 16 | pattern: ['ABA', 'CDC', 'AEA'], 17 | key: { 18 | A: 'create:andesite_alloy', 19 | B: 'create:electron_tube', 20 | C: 'refinedstorage:cable', 21 | D: 'minecraft:diamond', 22 | E: 'minecraft:observer' 23 | }, 24 | id: 'refinedstorage:controller' 25 | }, 26 | { 27 | output: 'refinedstorage:cable', 28 | pattern: ['AAA', 'BCB', 'AAA'], 29 | key: { 30 | A: 'create:andesite_alloy', 31 | B: '#forge:dusts/redstone', 32 | C: '#forge:glass' 33 | }, 34 | id: 'refinedstorage:cable' 35 | }, 36 | { 37 | output: 'refinedstorage:cable', 38 | pattern: ['ABA', 'ACA', 'ABA'], 39 | key: { 40 | A: 'create:andesite_alloy', 41 | B: '#forge:dusts/redstone', 42 | C: '#forge:glass' 43 | }, 44 | id: 'refinedstorage:cable_mirrored' 45 | }, 46 | { 47 | output: 'refinedstorage:crafting_grid', 48 | pattern: ['ABA', 'EDC', 'AAA'], 49 | key: { 50 | A: 'create:andesite_alloy', 51 | B: '#forge:dusts/redstone', 52 | C: '#forge:glass', 53 | D: '#forge:gems/diamond', 54 | E: 'refinedstorage:cable' 55 | }, 56 | id: 'refinedstorage:crafting_grid/crafting_grid' 57 | }, 58 | { 59 | output: 'refinedstorage:crafting_grid', 60 | pattern: ['ABA', 'CDE', 'AAA'], 61 | key: { 62 | A: 'create:andesite_alloy', 63 | B: '#forge:dusts/redstone', 64 | C: '#forge:glass', 65 | D: '#forge:gems/diamond', 66 | E: 'refinedstorage:cable' 67 | }, 68 | id: 'refinedstorage:crafting_grid/crafting_grid_mirrored' 69 | }, 70 | { 71 | output: 'simplybackpacks:commonbackpack', 72 | pattern: ['AAA', 'ADA', 'CBC'], 73 | key: { 74 | A: ['minecraft:white_wool', 'quark:white_quilted_wool'], 75 | B: '#forge:chests/wooden', 76 | C: '#forge:leather', 77 | D: '#forge:string' 78 | }, 79 | id: 'simplybackpacks:commonbackpack' 80 | } 81 | ]; 82 | 83 | recipes.forEach((recipe) => { 84 | event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); 85 | }); 86 | }); 87 | -------------------------------------------------------------------------------- /config/create-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [worldgen] 3 | 4 | # 5 | #Modify Create's impact on your terrain 6 | [worldgen.v2] 7 | # 8 | #Prevents all worldgen added by Create from taking effect 9 | disableWorldGen = false 10 | 11 | [worldgen.v2.copper_ore] 12 | # 13 | #Range: > 0 14 | minHeight = 40 15 | # 16 | #Range: > 0 17 | maxHeight = 85 18 | # 19 | #Range: > 0 20 | clusterSize = 18 21 | # 22 | #Amount of clusters generated per Chunk. 23 | # >1 to spawn multiple. 24 | # <1 to make it a chance. 25 | # 0 to disable. 26 | #Range: 0.0 ~ 512.0 27 | frequency = 2.0 28 | 29 | [worldgen.v2.weathered_limestone] 30 | # 31 | #Range: > 0 32 | minHeight = 10 33 | # 34 | #Range: > 0 35 | maxHeight = 30 36 | # 37 | #Range: > 0 38 | clusterSize = 128 39 | # 40 | #Amount of clusters generated per Chunk. 41 | # >1 to spawn multiple. 42 | # <1 to make it a chance. 43 | # 0 to disable. 44 | #Range: 0.0 ~ 512.0 45 | frequency = 0.015625 46 | 47 | [worldgen.v2.zinc_ore] 48 | # 49 | #Range: > 0 50 | minHeight = 15 51 | # 52 | #Range: > 0 53 | maxHeight = 70 54 | # 55 | #Range: > 0 56 | clusterSize = 14 57 | # 58 | #Amount of clusters generated per Chunk. 59 | # >1 to spawn multiple. 60 | # <1 to make it a chance. 61 | # 0 to disable. 62 | #Range: 0.0 ~ 512.0 63 | frequency = 4.0 64 | 65 | [worldgen.v2.limestone] 66 | # 67 | #Range: > 0 68 | minHeight = 30 69 | # 70 | #Range: > 0 71 | maxHeight = 70 72 | # 73 | #Range: > 0 74 | clusterSize = 128 75 | # 76 | #Amount of clusters generated per Chunk. 77 | # >1 to spawn multiple. 78 | # <1 to make it a chance. 79 | # 0 to disable. 80 | #Range: 0.0 ~ 512.0 81 | frequency = 0.015625 82 | 83 | [worldgen.v2.dolomite] 84 | # 85 | #Range: > 0 86 | minHeight = 20 87 | # 88 | #Range: > 0 89 | maxHeight = 70 90 | # 91 | #Range: > 0 92 | clusterSize = 128 93 | # 94 | #Amount of clusters generated per Chunk. 95 | # >1 to spawn multiple. 96 | # <1 to make it a chance. 97 | # 0 to disable. 98 | #Range: 0.0 ~ 512.0 99 | frequency = 0.015625 100 | 101 | [worldgen.v2.gabbro] 102 | # 103 | #Range: > 0 104 | minHeight = 20 105 | # 106 | #Range: > 0 107 | maxHeight = 70 108 | # 109 | #Range: > 0 110 | clusterSize = 128 111 | # 112 | #Amount of clusters generated per Chunk. 113 | # >1 to spawn multiple. 114 | # <1 to make it a chance. 115 | # 0 to disable. 116 | #Range: 0.0 ~ 512.0 117 | frequency = 0.015625 118 | 119 | [worldgen.v2.scoria] 120 | # 121 | #Range: > 0 122 | minHeight = 0 123 | # 124 | #Range: > 0 125 | maxHeight = 10 126 | # 127 | #Range: > 0 128 | clusterSize = 128 129 | # 130 | #Amount of clusters generated per Chunk. 131 | # >1 to spawn multiple. 132 | # <1 to make it a chance. 133 | # 0 to disable. 134 | #Range: 0.0 ~ 512.0 135 | frequency = 0.03125 136 | 137 | -------------------------------------------------------------------------------- /defaultconfigs/create-client.toml: -------------------------------------------------------------------------------- 1 | 2 | # 3 | #Client-only settings - If you're looking for general settings, look inside your worlds serverconfig folder! 4 | [client] 5 | # 6 | #Range: 0.0 ~ 1.0 7 | fanParticleDensity = 0.5 8 | # 9 | #Offset the overlay from goggle- and hover- information by this many pixels on the Y axis; Use /create overlay 10 | #Range: > -2147483648 11 | overlayOffsetY = 0 12 | # 13 | #Offset the overlay from goggle- and hover- information by this many pixels on the X axis; Use /create overlay 14 | #Range: > -2147483648 15 | overlayOffsetX = 20 16 | # 17 | #Log a stack-trace when rendering issues happen within a moving contraption. 18 | explainRenderErrors = false 19 | # 20 | #Use modern OpenGL features to drastically increase performance. 21 | experimentalRendering = true 22 | # 23 | #Setting this to true will prevent Create from sending you a warning when playing with Fabulous graphics enabled 24 | ignoreFabulousWarning = false 25 | # 26 | #Show colourful debug information while the F3-Menu is open. 27 | enableRainbowDebug = true 28 | # 29 | #Show item descriptions on Shift and controls on Ctrl. 30 | enableTooltips = true 31 | # 32 | #Display a tooltip when looking at overstressed components. 33 | enableOverstressedTooltip = true 34 | # 35 | #The maximum amount of blocks for which to try and calculate dynamic contraption lighting. Decrease if large contraption cause too much lag 36 | #Range: > 0 37 | maximumContraptionLightVolume = 16384 38 | # 39 | #Choose the menu row that the Create config button appears on in the main menu 40 | #Set to 0 to disable the button altogether 41 | #Range: 0 ~ 4 42 | mainMenuConfigButtonRow = 2 43 | # 44 | #Offset the Create config button in the main menu by this many pixels on the X axis 45 | #The sign (+/-) of this value determines what side of the row the button appears on (right/left) 46 | #Range: > -2147483648 47 | mainMenuConfigButtonOffsetX = -4 48 | # 49 | #Choose the menu row that the Create config button appears on in the in-game menu 50 | #Set to 0 to disable the button altogether 51 | #Range: 0 ~ 5 52 | ingameMenuConfigButtonRow = 3 53 | # 54 | #Offset the Create config button in the in-game menu by this many pixels on the X axis 55 | #The sign (+/-) of this value determines what side of the row the button appears on (right/left) 56 | #Range: > -2147483648 57 | ingameMenuConfigButtonOffsetX = -4 58 | 59 | # 60 | #Ponder settings 61 | [client.ponder] 62 | # 63 | #Slow down a ponder scene whenever there is text on screen. 64 | comfyReading = false 65 | 66 | # 67 | #Settings for the Placement Assist 68 | [client.placementAssist] 69 | # 70 | #Change the size of the Indicator by this multiplier 71 | #Range: 0.0 ~ 3.4028234663852886E38 72 | indicatorScale = 1.0 73 | # 74 | #What indicator should be used when showing where the assisted placement ends up relative to your crosshair 75 | #Choose 'NONE' to disable the Indicator altogether 76 | #Allowed Values: TEXTURE, TRIANGLE, NONE 77 | indicatorType = "TEXTURE" 78 | 79 | # 80 | #Sound settings 81 | [client.sound] 82 | # 83 | #Make cogs rumble and machines clatter. 84 | enableAmbientSounds = true 85 | # 86 | #Maximum volume modifier of Ambient noise 87 | #Range: 0.0 ~ 1.0 88 | ambientVolumeCap = 0.10000000149011612 89 | 90 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.1.5.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.1.4⟶CreateTogether 1.1.5 2 | 3 | ## Updated 4 | 5 | ### [Better Advancements](https://www.curseforge.com/minecraft/mc-mods/better-advancements) ([BetterAdvancements-1.16.5-0.1.1.109](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3364386)⟶[BetterAdvancements-1.16.5-0.1.1.115](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3404330)) 6 | 7 | #### [BetterAdvancements-1.16.5-0.1.1.115](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3404330) 8 | 9 | [[6cf5827](https://github.com/way2muchnoise/BetterAdvancements/commit/6cf58274ddd12acbe9af8845afef740e44e7c8a0)] fix readme travis link (way2muchnoise) 10 | 11 | #### [2 more entries](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/all) 12 | 13 | ### [Enigmatic Graves](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves) ([EnigmaticGraves-1.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves/files/3388869)⟶[EnigmaticGraves-1.5.1.jar](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves/files/3402632)) 14 | 15 | #### [EnigmaticGraves-1.5.1.jar](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves/files/3402632) 16 | 17 | * Fixed crash when retrieving a grave after the clear command was used 18 | 19 | #### [1 more entry](https://www.curseforge.com/minecraft/mc-mods/enigmatic-graves/files/all) 20 | 21 | ### [FTB Chunks (Forge)](https://www.curseforge.com/minecraft/mc-mods/ftb-chunks-forge) ([ftb-chunks-forge-1605.3.1-build.34.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-chunks-forge/files/3397049)⟶[ftb-chunks-forge-1605.3.1-build.36.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-chunks-forge/files/3401679)) 22 | 23 | #### [ftb-chunks-forge-1605.3.1-build.36.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-chunks-forge/files/3401679) 24 | 25 | * Fixed buckets and other right-click items not working in chunks - LatvianModder 26 | 27 | ### [Just Enough Items (JEI)](https://www.curseforge.com/minecraft/mc-mods/jei) ([jei-1.16.5-7.7.1.111.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3397912)⟶[jei-1.16.5-7.7.1.116.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3401260)) 28 | 29 | #### [Just Enough Items (JEI) 7.7.1](https://www.curseforge.com/minecraft/mc-mods/jei/files/3401260) 30 | 31 | * [Fix RecipeGuiLogic#setCategoryFocus](https://github.com/mezz/JustEnoughItems/commit/f6bd6ea033084f3d18ad256c9921641dcbd0330f) - mezz 32 | * [add reobf task in gradle to reobf both the jar and api](https://github.com/mezz/JustEnoughItems/commit/12799d66113fc7d4ba7c3320188b7aee7e770d4c) - mezz 33 | * [Update Mappings and FG in prep for 1.17 (#2425)](https://github.com/mezz/JustEnoughItems/commit/5188637a444b0338a9b0c4ca17e1e585d6ca933e) - Sara Freimer 34 | 35 | ### [Refined Storage](https://www.curseforge.com/minecraft/mc-mods/refined-storage) ([Refined Storage 1.9.13](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3351933)⟶[Refined Storage 1.9.15](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3400575)) 36 | 37 | #### [Refined Storage 1.9.15](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3400575) 38 | 39 | * Fixed Refined Storage Addons compatibility (Darkere) 40 | 41 | #### [1 more entry](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/all) 42 | 43 | ### [Storage Drawers](https://www.curseforge.com/minecraft/mc-mods/storage-drawers) ([StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3180569)⟶[StorageDrawers-1.16.3-8.3.0.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3402515)) 44 | 45 | #### [StorageDrawers-1.16.3-8.3.0.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3402515) 46 | 47 | * Restores concealment key item 48 | * Restores void icon when void upgrade is installed 49 | 50 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 51 | -------------------------------------------------------------------------------- /local/ftbchunks/client-config.snbt: -------------------------------------------------------------------------------- 1 | { 2 | # Biome blend 3 | # Default: "blend_5x5" 4 | # Valid values: "none", "blend_3x3", "blend_5x5", "blend_7x7", "blend_9x9", "blend_11x11", "blend_13x13", "blend_15x15" 5 | biome_blend: "blend_5x5" 6 | 7 | # Chunk grid overlay in large map 8 | # Default: false 9 | chunk_grid: false 10 | 11 | # Show claimed chunks on the map 12 | # Default: true 13 | claimed_chunks_on_map: true 14 | 15 | # Enables creation of death waypoints 16 | # Default: true 17 | death_waypoints: false 18 | 19 | # Enables debug info 20 | # Default: false 21 | debug_info: false 22 | 23 | # Advanced option. Foliage darkness 24 | # Default: 50 25 | # Range: 0 ~ 255 26 | foliage_darkness: 50 27 | 28 | # Advanced option. Grass darkness 29 | # Default: 50 30 | # Range: 0 ~ 255 31 | grass_darkness: 50 32 | 33 | # Show waypoints in world 34 | # Default: true 35 | in_world_waypoints: true 36 | 37 | # Different ways to render map 38 | # Default: "none" 39 | # Valid values: "none", "night", "topography", "blocks", "light_sources" 40 | map_mode: "none" 41 | 42 | # Noise added to map to make it look less plastic 43 | # Default: 0.05 44 | # Range: 0.0 ~ 0.5 45 | noise: 0.05d 46 | 47 | # Show your own claimed chunks on the map 48 | # Default: true 49 | own_claimed_chunks_on_map: true 50 | 51 | # Reduces color palette to 256 colors 52 | # Default: false 53 | reduced_color_palette: false 54 | 55 | # Advanced option. How often map render update will be queued 56 | # Default: 60 57 | # Range: 1 ~ 600 58 | rerender_queue_ticks: 60 59 | 60 | # Color intensity 61 | # Default: 1.0 62 | # Range: 0.0 ~ 1.0 63 | saturation: 1.0d 64 | 65 | # Shadow intensity 66 | # Default: 0.1 67 | # Range: 0.0 ~ 0.3 68 | shadows: 0.1d 69 | 70 | # Advanced option. Max tasks that can queue up 71 | # Default: 100 72 | # Range: 1 ~ 10000 73 | task_queue_max: 100 74 | 75 | # Advanced option. How often queued tasks will run 76 | # Default: 4 77 | # Range: 1 ~ 300 78 | task_queue_ticks: 4 79 | 80 | # How many blocks should height checks skip in water. 0 means flat water, ignoring terrain 81 | # Default: 8 82 | # Range: 0 ~ 128 83 | water_height_factor: 8 84 | 85 | # Advanced option. Water visibility 86 | # Default: 220 87 | # Range: 0 ~ 255 88 | water_visibility: 220 89 | minimap: { 90 | # Show biome under minimap 91 | # Default: true 92 | biome: true 93 | 94 | # Blurs minimap 95 | # Default: false 96 | blur: false 97 | 98 | # Adds NWSE compass inside minimap 99 | # Default: true 100 | compass: true 101 | 102 | # Enable minimap 103 | # Default: true 104 | enabled: false 105 | 106 | # Show entities on minimap 107 | # Default: true 108 | entities: true 109 | 110 | # Show entity heads on minimap 111 | # Default: true 112 | entity_heads: true 113 | 114 | # Entities in minimap will be larger 115 | # Default: false 116 | large_entities: false 117 | 118 | # Minimap will not rotate 119 | # Default: true 120 | locked_north: true 121 | 122 | # Show player heads on minimap 123 | # Default: true 124 | player_heads: true 125 | 126 | # Enables minimap to show up in corner 127 | # Default: "top_right" 128 | # Valid values: "bottom_left", "left", "top_left", "top_right", "right", "bottom_right" 129 | position: "top_right" 130 | 131 | # Scale of minimap 132 | # Default: 1.0 133 | # Range: 0.25 ~ 4.0 134 | scale: 1.0d 135 | 136 | # Minimap visibility 137 | # Default: 255 138 | # Range: 0 ~ 255 139 | visibility: 255 140 | 141 | # Show waypoints on minimap 142 | # Default: true 143 | waypoints: true 144 | 145 | # Show XYZ under minimap 146 | # Default: true 147 | xyz: true 148 | 149 | # Show zone (claimed chunk or wilderness) under minimap 150 | # Default: true 151 | zone: true 152 | 153 | # Zoom distance of the minimap 154 | # Default: 1.0 155 | # Range: 1.0 ~ 4.0 156 | zoom: 1.0d 157 | } 158 | } 159 | -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- 1 | # Create Together 2 | 3 | This is the official repository and issue-tracker for the modpack Create Together, for Minecraft 1.16.5 4 | 5 | ### Table of Contents 6 | 7 | - [Testing](#testing) 8 | - [Setup](#setup) 9 | - [MultiMC (Windows/Mac/Linux)](#multimc-linux--windows--mac) 10 | - [CurseForge App (Windows/Mac)](#curseforge-app-windows--mac) 11 | - [Server Automation](#server-automation) 12 | - [Links](#links) 13 | 14 |