├── .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 |
15 | 16 | ## Testing 17 | 18 | If you would like to help test the modpack, you're very welcome to do so. 19 | The best way you can test is by playing the modpack, reporting bugs and providing feedback from your experience. 20 | 21 | There are a few things we would like testers to consider/look for: 22 | 23 | - Bugs 24 | - Things you find boring/tedious 25 | - Things that need small optimizations, such as advancement text and textures. 26 | 27 | # Setup 28 | 29 | ### For Contributors and Testers 30 | 31 | Follow these steps to setup your workspace: 32 | 33 | ## MultiMC (Linux / Windows / Mac) 34 | 35 | #### Setup MultiMC Instance 36 | 37 | 1. Download [MultiMC](https://multimc.org/#Download) and [Git](https://git-scm.com/downloads) if you haven't already. 38 | 2. Open MultiMC. 39 | 3. Click Add Instance, choose Minecraft 1.16.5, click Ok. 40 | 4. Click Edit Instance. 41 | 5. Click Install Forge, pick the latest version. 42 | 43 | #### Repository Setup 44 | 45 | 6. Fork and clone the repository into the MultiMC Instance. 46 | 7. Open the folder of the MultiMC Instance you made (step 1-5), and go into the .minecraft folder - Open a terminal/command line and use the following commands: 47 | 48 | ```sh 49 | git init # Initialize git in folder 50 | git remote add origin URLToYourForkOfTheModpack # Set remote origin to your fork of the modpack 51 | git remote -v # Verify remote 52 | git fetch 53 | git checkout develop 54 | git pull 55 | ``` 56 | 57 | 8. Now double click the script `InstanceSyncSetup.sh` to setup InstanceSync. It is found in the `automation` folder. 58 | 59 | You're done! 60 | 61 | Tip: If you run into issues, verify that you are using the right Minecraft and Forge version in your MultiMC instance! 62 | 63 | ## CurseForge App (Windows / Mac) 64 | 65 | 1. Download the [CurseForge App](https://curseforge.overwolf.com/) and [Git](https://git-scm.com/downloads) if you haven't already. 66 | 2. Fork and clone the repository to the Instances folder of the CurseForge App, the default path is `C:\Users\{UserName}\Documents\Curse\Minecraft\Instances`. 67 | 68 | - _Note: If you've previously used the Twitch App the path will most likely be `C:\Users\{UserName}\Documents\Twitch\Minecraft\Instances`._ 69 | 70 | 3. Double click the script `InstanceSyncSetup.bat` to setup InstanceSync. It is found in the `automation` folder. 71 | 4. Open the CurseForge App and you should see the modpack. If you already had CurseForge App open, restart it. 72 | 73 | You're done! 74 | 75 | # Server Automation 76 | 77 | An easier way to keep your server running on the latest modpack version. 78 | Follow the below steps to be able to update modpack version with only a few clicks. 79 | 80 | ## Automatic updates with Git 81 | 82 | _Note: `.bat` files are for Windows, `.sh` are for Mac / Linux._ 83 | 84 | 1. Clone the repository to an empty folder. 85 | 2. Open the `automation` folder. 86 | 3. Run the script `InstanceSyncSetup`. 87 | 4. Run the script `update-server`. 88 | 89 | Re-run the script `update-server` whenever you want to update to a new modpack version. 90 | 91 | **Notes** 92 | 93 | - Using the `update-server` script will reset changes you've made to all files tracked by the repository. 94 | - A world and mod folder backup are created before updating 95 | - Anything put in the `overrides` folder will be copied into the root folder when the `update-server` script is finished - I recommend you put any changed configs and added mods there. 96 | 97 | ## Links 98 | 99 | - [CurseForge](https://www.curseforge.com/minecraft/modpacks/createtogether) 100 | 101 | - [Discord](https://discord.gg/enigmatica) 102 | -------------------------------------------------------------------------------- /changelogs/modlist_1.0.2.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.0.2 2 | - [[Forge 1.16.4/5] v1.12.148](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/3296137) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 3 | - [AutoRegLib-1.6-47.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/3128555) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 4 | - [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)) 5 | - [BiomeIdFixer 1.16.4/5-1.0.0.s1 (Forge)](https://www.curseforge.com/minecraft/mc-mods/biome-id-fixer/3179299) (by [desagas](https://www.curseforge.com/members/desagas/projects)) 6 | - [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)) 7 | - [chocolate-1.3.0-1.16.4.jar](https://www.curseforge.com/minecraft/mc-mods/chocolate-fix/3166929) (by [AlcatrazEscapee](https://www.curseforge.com/members/alcatrazescapee/projects)) 8 | - [[Forge 1.16.4/5] v4.11.19](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/3261152) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 9 | - [cobblegenrandomizer-1.16-5.1.2.jar](https://www.curseforge.com/minecraft/mc-mods/cobblegenrandomizer/3147020) (by [HorribleNerd](https://www.curseforge.com/members/horriblenerd/projects)) 10 | - [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)) 11 | - [1.16.2+ (3.0.2)](https://www.curseforge.com/minecraft/mc-mods/cookiecore/3158118) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 12 | - [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)) 13 | - [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)) 14 | - [dynviewdist-1.9.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/3217166) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 15 | - [exnihilosequentia-1.16-2.0.2.6.jar](https://www.curseforge.com/minecraft/mc-mods/ex-nihilo-sequentia/3294507) (by [NovaMachina](https://www.curseforge.com/members/novamachina/projects)) 16 | - [ftb-ultimine-1605.2.0-build.26-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/3269868) (by [FTB](https://www.curseforge.com/members/ftb/projects)) 17 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 18 | - [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)) 19 | - [kubejs-1605.3.7-build.190-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/3297583) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 20 | - [kubejs-create-1604.1.0.4.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-create/3169448) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 21 | - [1.16.2 - 1.16.5 (3.2.0)](https://www.curseforge.com/minecraft/mc-mods/magic-feather/3224434) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 22 | - [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)) 23 | - [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)) 24 | - [Quark-r2.4-311.jar](https://www.curseforge.com/minecraft/mc-mods/quark/3282239) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 25 | - [Refined Storage 1.9.12](https://www.curseforge.com/minecraft/mc-mods/refined-storage/3196167) (by [raoulvdberge](https://www.curseforge.com/members/raoulvdberge/projects)) 26 | - [rhino-1.7.13-build.23.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/3279704) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 27 | - [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)) 28 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.0.4.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.0.3⟶CreateTogether 1.0.4 2 | 3 | ## Added 4 | 5 | * [Colds: Easy Paxel (Lite) (FORGE)](https://www.curseforge.com/minecraft/mc-mods/colds-easy-paxel-lite) 6 | * [Simple Magnets](https://www.curseforge.com/minecraft/mc-mods/simple-magnets) 7 | * [SuperMartijn642's Config Lib](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-config-lib) 8 | * [SuperMartijn642's Core Lib](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib) 9 | * [The One Probe](https://www.curseforge.com/minecraft/mc-mods/the-one-probe) 10 | 11 | ## Updated 12 | 13 | ### [Architectury API (Forge)](https://www.curseforge.com/minecraft/mc-mods/architectury-forge) ([[Forge 1.16.4/5] v1.12.148](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3296137)⟶[[Forge 1.16.4/5] v1.12.149](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3302580)) 14 | 15 | #### [[Forge 1.16.4/5] v1.12.149](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3302580) 16 | 17 | Architectury v1.12.149 for 1.16.4/5 18 | 19 | Updated at 2021-05-08 11:33. 20 | 21 | [Click here for changelog](https://www.github.com/architectury/architectury/commits/8de2c93) 22 | 23 | * Fixes CME with Platform#getMod 24 | * Update to Architectury Plugin 3.1 to support detecting the api FabricLoader 25 | * Add interruptTrue/Default/False as util methods 26 | * Bump to 1.11 27 | * Some more (mostly Entity-based) Events (#75) 28 | * Re-license header 29 | * Add docs 30 | * Add getCustomEquipmentSlot 31 | * Close #39 32 | * Fix invalid events 33 | * Bump forge event priority to HIGH 34 | * Add EntityHooks.fromCollision to retrieve an entity from block collision (#64) 35 | * Add @SubscribeEvent to ColorHandlersImpl 36 | * Remove addListener from ColorHandlersImpl 37 | * Fix Forge Screen Events to be consistent with the fabric implementation: InteractionResult.SUCCESS should also indicate that the event should be cancelled. 38 | * More annotation event migration 39 | * Migrate Forge ReloadListeners events to annotations 40 | * Fix CLIENT_WORLD_LOAD on Forge 41 | * Bump to 1.9 42 | * Change at 43 | * Rewrite the GuiEvent.SET_SCREEN mixin to fix #35 44 | * Update plugins 45 | * Add lightning strikes to the debug mod 46 | * Update plugin 47 | * Update plugins 48 | * Add EntityRenderers (#52) 49 | * Fix BlockEntityExtension @Shadow remapping 50 | * Update architectury-plugin to 3.0.89 and fix #51 51 | * Revert "Remove locals requirements from BlockLandingInvoker" 52 | * Remove local testing build of transformer 53 | * Remove locals requirements from BlockLandingInvoker 54 | * Update architectury-plugin to 3.0.88 55 | * Implement onDataPacket (#48) 56 | * Add null checks to networking for better errors. 57 | * Remove jcenter from settings.gradle 58 | * Bump to 1.8 59 | * Fix block entity without position 60 | * Implement Tag#equals and Tag#hashCode on forge because forge is nice 61 | * Add license 62 | * Add test mod and fix game rules on forge 63 | * Add licenses and implement optional tags, requires some testing. 64 | * Fix forge publishing as fabric 65 | * Migrate to Arch Plugin 3 66 | * Update README.md 67 | * Publish the platform specific jars on a different artifact id to resolve issues with transitive dependencies. 68 | * (Retroactively) bump version to 1.6 69 | * Fix falling block land event to handle all (vanilla) blocks correctly (Modded blocks need to have super.onLand(...) and then they'll be fine too) 70 | 71 | [(129 more lines)](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3302580) 72 | 73 | ### [KubeJS (Forge)](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge) ([kubejs-1605.3.7-build.190-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3297583)⟶[kubejs-1605.3.7-build.192-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3304232)) 74 | 75 | #### [kubejs-1605.3.7-build.192-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3304232) 76 | 77 | * Add list of categories to "category not found" error in jei.yeet.recipes - Max 78 | * Add event to hide jei recipes - 'jei.yeet.recipes' - Max 79 | * Add tag utility methods to items, blocks, fluids - Max 80 | 81 | #### [1 more entry](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/all) 82 | 83 | ## Removed 84 | 85 | * [Biome Id Fixer (Forge)](https://www.curseforge.com/minecraft/mc-mods/biome-id-fixer) 86 | 87 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 88 | -------------------------------------------------------------------------------- /defaultconfigs/buildinggadgets-server.toml: -------------------------------------------------------------------------------- 1 | 2 | #General mod settings 3 | [general] 4 | #Defined whether or not a player can use Absolute Coords mode in the Copy Paste Gadget 5 | "Allow Absolute Coords" = true 6 | #Whether the Building / CopyPaste Gadget can overwrite blocks like water, lava, grass, etc (like a player can). 7 | #False will only allow it to overwrite air blocks. 8 | "Allow non-Air-Block-Overwrite" = true 9 | #Defines how far away you can build 10 | #Range: 1.0 ~ 48.0 11 | MaxBuildDistance = 32.0 12 | 13 | #Configure the Gadgets 14 | [Gadgets] 15 | #Maximum amount of Blocks to be placed in one Tick. 16 | #Notice that an EffectBlock takes 20 ticks to place, therefore a Server has to handle 20-times this value effect-block Tile's at once. Reduce this if you notice lag-spikes from Players placing Templates. 17 | #Of course decreasing this value will result in more time required to place large TemplateItem's. 18 | #Range: > 1 19 | "Max Placement/Tick" = 1024 20 | #The max range of the Gadgets 21 | #Range: 1 ~ 32 22 | "Maximum allowed Range" = 15 23 | 24 | #Energy Cost & Durability of the Building Gadget 25 | [Gadgets."Building Gadget"] 26 | #The Gadget's Energy cost per Operation 27 | #Range: > 0 28 | "Energy Cost" = 0 29 | #The max energy of the Gadget, set to 0 to disable energy usage 30 | #Range: > 0 31 | "Maximum Energy" = 0 32 | #The Gadget's Max Undo size (Note, the exchanger does not support undo) 33 | #Range: 0 ~ 128 34 | "Max Undo History Size" = 10 35 | 36 | #Energy Cost & Durability of the Copy-Paste Gadget 37 | [Gadgets."Copy-Paste Gadget"] 38 | #Maximum dimensions (x, y and z) that can be copied by a Template without requiring special permission. 39 | #Permission can be granted using the '/buildinggadgets OverrideCopySize []' command. 40 | #Range: > -1 41 | "Max Copy Dimensions" = 256 42 | #Maximum dimensions (x, y and z) that can be build by a Template without requiring special permission. 43 | #Permission can be granted using the '/buildinggadgets OverrideBuildSize []' command. 44 | #Range: > -1 45 | "Max Build Dimensions" = 256 46 | #The Gadget's Energy cost per Operation 47 | #Range: > 0 48 | "Energy Cost" = 0 49 | #Maximum amount of Blocks to be copied in one Tick. 50 | #Lower values may improve Server-Performance when copying large Templates 51 | #Range: > 1 52 | "Max Copy/Tick" = 32768 53 | #The max energy of the Gadget, set to 0 to disable energy usage 54 | #Range: > 0 55 | "Maximum Energy" = 0 56 | #The Gadget's Max Undo size (Note, the exchanger does not support undo) 57 | #Range: 0 ~ 128 58 | "Max Undo History Size" = 3 59 | 60 | #Energy Cost, Durability & Maximum Energy of the Destruction Gadget 61 | [Gadgets."Destruction Gadget"] 62 | #The Gadget's Energy cost per Operation 63 | #Range: > 0 64 | "Energy Cost" = 0 65 | #The cost in energy/durability will increase by this amount when not in fuzzy mode 66 | #Range: 0.0 ~ 1.7976931348623157E308 67 | "Non-Fuzzy Mode Multiplier" = 2.0 68 | #The max energy of the Gadget, set to 0 to disable energy usage 69 | #Range: > 0 70 | "Maximum Energy" = 0 71 | #The Gadget's Max Undo size (Note, the exchanger does not support undo) 72 | #Range: 0 ~ 128 73 | "Max Undo History Size" = 1 74 | #If enabled, the Destruction Gadget can be taken out of fuzzy mode, allowing only instances of the block clicked to be removed (at a higher cost) 75 | "Non-Fuzzy Mode Enabled" = false 76 | #The maximum dimensions, the Destruction Gadget can destroy. 77 | #Range: 0 ~ 32 78 | "Destroy Dimensions" = 16 79 | 80 | #Energy Cost & Durability of the Exchanging Gadget 81 | [Gadgets."Exchanging Gadget"] 82 | #The Gadget's Energy cost per Operation 83 | #Range: > 0 84 | "Energy Cost" = 0 85 | #The max energy of the Gadget, set to 0 to disable energy usage 86 | #Range: > 0 87 | "Maximum Energy" = 0 88 | #The Gadget's Max Undo size (Note, the exchanger does not support undo) 89 | #Range: 0 ~ 128 90 | "Max Undo History Size" = 10 91 | 92 | #Configure the Paste Containers 93 | ["Paste Containers"] 94 | #The maximum capacity of a tier 1 (iron) Construction Paste Container 95 | #Range: > 1 96 | "T1 Container Capacity" = 512 97 | #The maximum capacity of a tier 2 (iron) Construction Paste Container 98 | #Range: > 1 99 | "T2 Container Capacity" = 2048 100 | #The maximum capacity of a tier 3 (iron) Construction Paste Container 101 | #Range: > 1 102 | "T3 Container Capacity" = 8192 103 | 104 | -------------------------------------------------------------------------------- /config/cobblegenrandomizer-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #General settings 3 | [general] 4 | #Use config instead of datapack 5 | use_config = true 6 | 7 | #List settings 8 | #Syntax: ["modid:block|weight"] 9 | #Example: ["minecraft:stone|2","minecraft:dirt|1"] 10 | #Forge tags are supported 11 | [general.lists] 12 | #Basalt gen 13 | block_list_basalt = ["minecraft:basalt|1", "minecraft:basalt|1"] 14 | #Cobble gen 15 | block_list_cobble = ["minecraft:cobblestone|1", "minecraft:cobblestone|1"] 16 | #Stone gen 17 | block_list_stone = ["minecraft:stone|1", "minecraft:stone|1"] 18 | 19 | #Custom settings 20 | [general.lists.custom] 21 | #Custom generators 22 | #Syntax: [gen] 23 | #Gen: [type, block, list] 24 | #Type: cobblestone, stone 25 | #Block: resource location of the block below the generated block 26 | #List: see List settings 27 | #Examples: 28 | #custom_generators = [ 29 | # ["cobblestone", "minecraft:diamond_block", ["minecraft:diamond_block"]], 30 | # ["cobblestone", "minecraft:dirt", ["forge:dirt"]], 31 | # ["cobblestone", "minecraft:white_wool", ["minecraft:wool"]]] 32 | custom_generators = [["cobblestone", "create:andesite_cobblestone", ["create:andesite_cobblestone"]], ["cobblestone", "create:diorite_cobblestone", ["create:diorite_cobblestone"]], ["cobblestone", "create:granite_cobblestone", ["create:granite_cobblestone"]], ["cobblestone", "quark:cobbedstone", ["quark:cobbedstone"]], ["cobblestone", "create:dark_scoria_cobblestone", ["create:dark_scoria_cobblestone"]], ["cobblestone", "create:scoria_cobblestone", ["create:scoria_cobblestone"]], ["cobblestone", "create:gabbro_cobblestone", ["create:gabbro_cobblestone"]], ["cobblestone", "create:dolomite_cobblestone", ["create:dolomite_cobblestone"]], ["cobblestone", "create:weathered_limestone_cobblestone", ["create:weathered_limestone_cobblestone"]], ["cobblestone", "create:limestone_cobblestone", ["create:limestone_cobblestone"]], ["stone", "minecraft:andesite", ["minecraft:andesite"]], ["stone", "minecraft:diorite", ["minecraft:diorite"]], ["stone", "minecraft:granite", ["minecraft:granite"]], ["stone", "minecraft:red_sandstone", ["minecraft:red_sandstone"]], ["stone", "minecraft:sandstone", ["minecraft:sandstone"]], ["stone", "quark:basalt", ["quark:basalt"]], ["stone", "quark:brimstone", ["quark:brimstone"]], ["stone", "quark:jasper", ["quark:jasper"]], ["stone", "quark:marble", ["quark:marble"]], ["stone", "quark:permafrost", ["quark:permafrost"]], ["stone", "quark:slate", ["quark:slate"]], ["stone", "create:dark_scoria", ["create:dark_scoria"]], ["stone", "create:scoria", ["create:scoria"]], ["stone", "create:gabbro", ["create:gabbro"]], ["stone", "create:dolomite", ["create:dolomite"]], ["stone", "create:weathered_limestone", ["create:weathered_limestone"]], ["stone", "create:limestone", ["create:limestone"]], ["stone", "create:andesite_cobblestone", ["create:andesite_cobblestone"]], ["stone", "create:diorite_cobblestone", ["create:diorite_cobblestone"]], ["stone", "create:granite_cobblestone", ["create:granite_cobblestone"]], ["stone", "quark:cobbedstone", ["quark:cobbedstone"]], ["stone", "create:dark_scoria_cobblestone", ["create:dark_scoria_cobblestone"]], ["stone", "create:scoria_cobblestone", ["create:scoria_cobblestone"]], ["stone", "create:gabbro_cobblestone", ["create:gabbro_cobblestone"]], ["stone", "create:dolomite_cobblestone", ["create:dolomite_cobblestone"]], ["stone", "create:weathered_limestone_cobblestone", ["create:weathered_limestone_cobblestone"]], ["stone", "create:limestone_cobblestone", ["create:limestone_cobblestone"]], ["cobblestone", "minecraft:andesite", ["minecraft:andesite"]], ["cobblestone", "minecraft:diorite", ["minecraft:diorite"]], ["cobblestone", "minecraft:granite", ["minecraft:granite"]], ["cobblestone", "minecraft:red_sandstone", ["minecraft:red_sandstone"]], ["cobblestone", "minecraft:sandstone", ["minecraft:sandstone"]], ["cobblestone", "quark:basalt", ["quark:basalt"]], ["cobblestone", "quark:brimstone", ["quark:brimstone"]], ["cobblestone", "quark:jasper", ["quark:jasper"]], ["cobblestone", "quark:marble", ["quark:marble"]], ["cobblestone", "quark:permafrost", ["quark:permafrost"]], ["cobblestone", "quark:slate", ["quark:slate"]], ["cobblestone", "create:dark_scoria", ["create:dark_scoria"]], ["cobblestone", "create:scoria", ["create:scoria"]], ["cobblestone", "create:gabbro", ["create:gabbro"]], ["cobblestone", "create:dolomite", ["create:dolomite"]], ["cobblestone", "create:weathered_limestone", ["create:weathered_limestone"]], ["cobblestone", "create:limestone", ["create:limestone"]], ["cobblestone", "minecraft:netherrack", ["minecraft:netherrack"]], ["stone", "minecraft:netherrack", ["minecraft:netherrack"]]] 33 | 34 | -------------------------------------------------------------------------------- /config/packmenu.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | "forge info" { 4 | # The anchor point for this element. [default: FORGE] 5 | S:"Anchor Point"=FORGE 6 | 7 | # The X offset for this element. [range: -1000 ~ 1000, default: 0] 8 | I:"X Offset"=0 9 | 10 | # The Y Offset for this element. [range: -1000 ~ 1000, default: 0] 11 | I:"Y Offset"=0 12 | } 13 | 14 | 15 | general { 16 | # If forge information is drawn at the top center. This includes beta and update warnings. [default: true] 17 | B:"Draw Forge Info"=false 18 | 19 | # If the "Java Edition" text is drawn. [default: true] 20 | B:"Draw Java Edition"=false 21 | 22 | # If the vanilla panorama, and it's fade-in, are rendered. Enabling this disables the use of the custom background options. [default: false] 23 | B:"Draw Panorama"=true 24 | 25 | # If the splash text is drawn. [default: true] 26 | B:"Draw Splash"=false 27 | 28 | # If the title (the giant minecraft text) is drawn. [default: true] 29 | B:"Draw Title"=false 30 | 31 | # If the resource pack is loaded from /resources instead of /resources.zip [default: true] 32 | B:"Folder Pack"=true 33 | 34 | # If the Panorama has a fade-in effect. [default: false] 35 | B:"Panorama Fade In"=false 36 | 37 | # A multiplier on panorama speed. [range: 0.01 ~ 100.0, default: 1.0] 38 | S:"Panorama Speed"=0.5 39 | 40 | # The number of variations of panorama that exist. Panorama files other than the original set must have the form panorama_.png. For example the first file of varation #2 would be panorama1_0.png [range: 1 ~ 10, default: 1] 41 | I:"Panorama Variations"=1 42 | } 43 | 44 | 45 | "java edition text" { 46 | # The anchor point for this element. [default: JAVAED] 47 | S:"Anchor Point"=JAVAED 48 | 49 | # The X offset for this element. [range: -1000 ~ 1000, default: 0] 50 | I:"X Offset"=0 51 | 52 | # The Y Offset for this element. [range: -1000 ~ 1000, default: 0] 53 | I:"Y Offset"=0 54 | } 55 | 56 | 57 | logo { 58 | # The anchor point of the logo. The types of anchor points are available on the wiki. [default: DEFAULT_LOGO] 59 | S:"Anchor Point"=TOP_CENTER 60 | 61 | # The height of the logo. [range: 0 ~ 500000, default: 100] 62 | I:Height=150 63 | 64 | # The height of the logo's texture. [range: 0 ~ 500000, default: 300] 65 | I:"Texture Height"=150 66 | 67 | # The location of the logo texture. Must be a png file. Should contain the extension. [default: packmenu:textures/gui/logo.png] 68 | S:"Texture Path"=enigmatica:textures/logo.png 69 | 70 | # The width of the logo's texture. [range: 0 ~ 500000, default: 300] 71 | I:"Texture Width"=400 72 | 73 | # The width of the logo. [range: 0 ~ 500000, default: 100] 74 | I:Width=400 75 | 76 | # The X offset of the logo. [range: -500000 ~ 500000, default: -650] 77 | I:"X Offset"=-120 78 | 79 | # The Y offset of the logo. [range: -500000 ~ 500000, default: 0] 80 | I:"Y Offset"=15 81 | } 82 | 83 | 84 | slideshow { 85 | # How long between slideshow transitions. [range: 1 ~ 1000000, default: 200] 86 | I:Duration=200 87 | 88 | # The list of textures to be displayed on the slideshow. If empty, the slideshow is ignored. [default: ] 89 | S:Textures < 90 | > 91 | 92 | # How long the slideshow transition lasts. [range: 1 ~ 1000000, default: 20] 93 | I:"Transition Duration"=20 94 | } 95 | 96 | 97 | "splash text" { 98 | # The anchor point for this element. [default: SPLASH] 99 | S:"Anchor Point"=SPLASH 100 | 101 | # The color of the splash text. [range: -2147483647 ~ 2147483647, default: -256] 102 | I:Color=-256 103 | 104 | # The rotation value of the splash text. [range: -360.0 ~ 360.0, default: -20.0] 105 | S:Rotation=-20.0 106 | 107 | # The X offset for this element. [range: -1000 ~ 1000, default: 0] 108 | I:"X Offset"=0 109 | 110 | # The Y Offset for this element. [range: -1000 ~ 1000, default: 0] 111 | I:"Y Offset"=0 112 | } 113 | 114 | 115 | support { 116 | # The URL that the link on the supporters page goes to. [default: https://www.patreon.com/Shadows_of_Fire?fan_landing=true] 117 | S:"Patreon Url"=https://www.patreon.com/Shadows_of_Fire?fan_landing=true 118 | } 119 | 120 | 121 | title { 122 | # The anchor point for this element. [default: TITLE] 123 | S:"Anchor Point"=TITLE 124 | 125 | # The X offset for this element. [range: -1000 ~ 1000, default: 0] 126 | I:"X Offset"=0 127 | 128 | # The Y Offset for this element. [range: -1000 ~ 1000, default: 0] 129 | I:"Y Offset"=0 130 | } 131 | 132 | 133 | -------------------------------------------------------------------------------- /changelogs/modlist_1.0.3.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.0.3 2 | - [[Forge 1.16.4/5] v1.12.148](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3296137) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 3 | - [AutoRegLib-1.6-47.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/files/3128555) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 4 | - [BetterAdvancements-1.16.5-0.1.0.105](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3218942) (by [way2muchnoise](https://www.curseforge.com/members/way2muchnoise/projects)) 5 | - [BiomeIdFixer 1.16.4/5-1.0.0.s1 (Forge)](https://www.curseforge.com/minecraft/mc-mods/biome-id-fixer/files/3179299) (by [desagas](https://www.curseforge.com/members/desagas/projects)) 6 | - [buildinggadgets-1.16.5-3.8.0.jar](https://www.curseforge.com/minecraft/mc-mods/building-gadgets/files/3205295) (by [Direwolf20](https://www.curseforge.com/members/direwolf20/projects)) 7 | - [chocolate-1.3.0-1.16.4.jar](https://www.curseforge.com/minecraft/mc-mods/chocolate-fix/files/3166929) (by [AlcatrazEscapee](https://www.curseforge.com/members/alcatrazescapee/projects)) 8 | - [Chunk Pregenerator-V1.16-3.0.5](https://www.curseforge.com/minecraft/mc-mods/chunkpregenerator/files/3237965) (by [Speiger](https://www.curseforge.com/members/speiger/projects)) 9 | - [[Forge 1.16.4/5] v4.11.19](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3261152) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 10 | - [cobblegenrandomizer-1.16-5.1.2.jar](https://www.curseforge.com/minecraft/mc-mods/cobblegenrandomizer/files/3147020) (by [HorribleNerd](https://www.curseforge.com/members/horriblenerd/projects)) 11 | - [constructionwand-1.16.5-2.2.jar](https://www.curseforge.com/minecraft/mc-mods/construction-wand/files/3285196) (by [ThetaDev](https://www.curseforge.com/members/thetadev/projects)) 12 | - [1.16.2+ (3.0.2)](https://www.curseforge.com/minecraft/mc-mods/cookiecore/files/3158118) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 13 | - [Create 1.16.4+ v0.3.1c](https://www.curseforge.com/minecraft/mc-mods/create/files/3278516) (by [simibubi](https://www.curseforge.com/members/simibubi/projects)) 14 | - [DrawersTooltip-1.16.2-2.1.0.jar](https://www.curseforge.com/minecraft/mc-mods/drawers-tooltip/files/3035686) (by [Snownee_](https://www.curseforge.com/members/snownee_/projects)) 15 | - [dynviewdist-1.9.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/files/3217166) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 16 | - [exnihilosequentia-1.16-2.0.2.6.jar](https://www.curseforge.com/minecraft/mc-mods/ex-nihilo-sequentia/files/3294507) (by [NovaMachina](https://www.curseforge.com/members/novamachina/projects)) 17 | - [ftb-ultimine-1605.2.0-build.26-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3269868) (by [FTB](https://www.curseforge.com/members/ftb/projects)) 18 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/files/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 19 | - [jei-1.16.5-7.6.4.90.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3295418) (by [mezz](https://www.curseforge.com/members/mezz/projects)) 20 | - [kubejs-1605.3.7-build.190-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3297583) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 21 | - [kubejs-create-1604.1.0.4.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-create/files/3169448) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 22 | - [1.16.2 - 1.16.5 (3.2.0)](https://www.curseforge.com/minecraft/mc-mods/magic-feather/files/3224434) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 23 | - [PackMenu-1.16.4-2.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/packmenu/files/3292171) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 24 | - [Placebo-1.16.4-4.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3281276) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 25 | - [Quark-r2.4-311.jar](https://www.curseforge.com/minecraft/mc-mods/quark/files/3282239) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 26 | - [Refined Storage 1.9.12](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3196167) (by [raoulvdberge](https://www.curseforge.com/members/raoulvdberge/projects)) 27 | - [rhino-1.7.13-build.23.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3279704) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 28 | - [serverconfigupdater-1.3.jar](https://www.curseforge.com/minecraft/mc-mods/serverconfig-updater/files/3034936) (by [Darkere](https://www.curseforge.com/members/darkere/projects)) 29 | - [StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3180569) (by [Texelsaur](https://www.curseforge.com/members/texelsaur/projects)) 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Folders/wildcards 2 | /journeymap/ 3 | /dumps/ 4 | /crash-reports/ 5 | /.mixin.out/ 6 | /logs/ 7 | config/forgeendertech/Biomes/ 8 | /local/ftbchunks/data 9 | /local/ftbutilities 10 | /libraries/ 11 | /llibrary/ 12 | /ESM/ 13 | /saves/ 14 | screenshots/ 15 | /mods/ 16 | /world/ 17 | /world_backup/ 18 | /data/ 19 | /kubejs/exported 20 | **/*.log 21 | /.mixin.out 22 | /saves 23 | /downloads 24 | /resourcepacks 25 | **/*.exe 26 | *.dll 27 | **/*.zip 28 | 29 | # Instance Sync 30 | **/*.jar 31 | !InstanceSync*.jar 32 | **/*.jar.disabled 33 | **/*.jar.meta 34 | 35 | # Utilities 36 | .github_changelog_generator 37 | .ReAuth.cfg 38 | usernamecache.json 39 | usercache.json 40 | knownkeys.txt 41 | servers.dat 42 | realms_persistence.json 43 | ItemDump.txt 44 | BotaniaVars.dat 45 | crafttweaker.log 46 | github_changelog_generator.gemspec 47 | whitelist.json 48 | ops.json 49 | soundsMuffled.dat 50 | ModpackUploader.bat 51 | .curseclient 52 | config/XaeroWorldMap/ 53 | eula.txt 54 | XaeroWaypoints/ 55 | XaeroWorldMap/ 56 | options.txt 57 | secrets.ps1 58 | CHANGELOG-GENERATED.md 59 | ds_private_storage.json 60 | TwitchExportBuilder.exe 61 | reauth.toml 62 | patchouli_data.json 63 | new.json 64 | old.json 65 | config/cherishedworlds/favorites.dat 66 | !packmenu/*.zip 67 | TrashSlotSaveState.json 68 | mode.json 69 | emojiful/cache/* 70 | !config/defaultoptions/options.txt 71 | .vote2020_marker 72 | servers.dat_old 73 | banned-ips.json 74 | banned-players.json 75 | ESM/Anchors.dat 76 | config/xnet-client.toml 77 | config/buildinggadgets-client.toml 78 | config/mining_helmet-client.toml 79 | stop-java-detection.txt 80 | remove-client-mods.bat 81 | remove-client-mods.ps1 82 | !server_files/server-guide.txt 83 | server-install.sh 84 | start-server.bat 85 | start-server.sh 86 | start-automated-server.bat 87 | start-automated-server.sh 88 | server-setup-config.yaml 89 | server.properties 90 | settings.cfg 91 | update-server.bat 92 | update-server.ps1 93 | !server_files/** 94 | !automation/** 95 | automation/secrets.ps1 96 | automation/ChangelogGenerator-2.0.0-pre10.jar 97 | automation/ModListCreator-1.1.5.jar 98 | 1.16.5.json 99 | 100 | # Client Configs 101 | config/InvTweaks.cfg 102 | config/MouseTweaks.cfg 103 | config/jei/worldSettings.cfg 104 | config/jei/lookupHistory.zip 105 | config/jei/bookmarks.ini 106 | config/rftoolsutility-client.toml 107 | config/rftoolsstorage-client.toml 108 | config/rftoolscontrol-client.toml 109 | config/rftoolsbuilder-client.toml 110 | config/ambientsounds-client.json 111 | config/mythicbotany-client.toml 112 | config/farmersdelight-client.toml 113 | config/rftoolspower-client.toml 114 | config/astralsorcery-client.toml 115 | config/create-client.toml 116 | config/cagedmobs-client.toml 117 | config/eidolon-client.toml 118 | config/sophisticatedbackpacks-client.toml 119 | config/thermal-client.toml 120 | config/abnormals_core-client.toml 121 | config/computercraft-client.toml 122 | config/supplementaries-client.toml 123 | config/artifacts-client.toml 124 | config/occultism-client.toml 125 | config/betterendforge/client-config.toml 126 | config/upgrade_aquatic-client.toml 127 | config/immersivepetroleum-client.toml 128 | config/cyclopscore-client.toml 129 | config/ironjetpacks-client.toml 130 | config/cucumber-client.toml 131 | config/travel_anchors-client.toml 132 | config/tconstruct-client.toml 133 | config/morered-client.toml 134 | config/betteradvancements-client.toml 135 | config/craftingtweaks-client.toml 136 | config/emojiful-client.toml 137 | config/extremesoundmuffler-client.toml 138 | config/mininggadgets-client.toml 139 | config/pneumaticcraft/ArmorFeatureStatus.cfg 140 | config/pneumaticcraft/PneumaticArmorHUDLayout.cfg 141 | config/jei-client.toml 142 | config/refinedstorage-client.toml 143 | config/mcjtylib-client.toml 144 | config/rare-ice.properties 145 | config/pneumaticcraft-client.toml 146 | config/chiselsandbits-client.toml 147 | config/neat-client.toml 148 | config/itemzoom-client.toml 149 | config/inventoryhud-client.toml 150 | config/ftbchunks-client.toml 151 | config/immersiveengineering-client.toml 152 | 153 | # GDLauncher 154 | config.json 155 | /natives/ 156 | 157 | # MacOSX 158 | .DS_Store 159 | .DS_Store? 160 | biomeidfixer.temp 161 | config/PregenConfig.toml 162 | NewWorldBiomeIdFixer.json 163 | config/waila/waila.json 164 | config/waila/waila_plugins.json 165 | config/PregenConfig.toml 166 | config/theoneprobe-common.toml 167 | config/theoneprobe-client.toml 168 | automation/ModListCreator-1.2.1.jar 169 | config/moreoverlays.toml 170 | config/appleskin-client.toml 171 | config/invtweaks-client.toml 172 | config/sidebar_buttons.json 173 | local/ftbultimine/client.snbt 174 | config/entity_culling-client.toml 175 | config/storagedrawers-client.toml 176 | config/roadrunner/common.toml 177 | config/roadrunner/client.toml 178 | defaultconfigs/ftbultimine/ftbultimine.snbt 179 | local/ftbultimine-client.snbt 180 | -------------------------------------------------------------------------------- /automation/update-server.ps1: -------------------------------------------------------------------------------- 1 | param( 2 | [Parameter(Position = 0)] 3 | [string]$targetBranch = "master", 4 | 5 | [Parameter(Position = 1)] 6 | [string]$worldFolder = "world", 7 | 8 | [Parameter(Position = 2)] 9 | [string]$backupFolder = "backups", 10 | 11 | [Parameter(Position = 3)] 12 | [bool]$backupWorld = $true, 13 | 14 | [Parameter(Position = 4)] 15 | [int]$backupsToKeep = 12, 16 | 17 | [Parameter(Position = 5)] 18 | [string]$serverFileFolder = "server_files" 19 | ) 20 | 21 | $initialLocation = (Get-Location) 22 | $modFolder = "mods" 23 | $overridesFolder = "overrides" 24 | 25 | function Determine-Location { 26 | if (-not (Test-Path $modFolder)) { 27 | cd.. 28 | if (-not (Test-Path $modFolder)) { 29 | Write-Host "Unable to determine where the main folder is. " -ForegroundColor Red 30 | Write-Host "This script should be run from the instance root, or from the automation folder." -ForegroundColor Red 31 | pause 32 | throw 33 | } 34 | } 35 | } 36 | 37 | function Update-IsAvailable { 38 | Write-Host 39 | Write-Host "Checking if there are any updates available..." -ForegroundColor Cyan 40 | git fetch 41 | $commitsBehind = git rev-list --left-only --count "origin/$targetBranch...$targetBranch" 42 | 43 | if ($commitsBehind -gt 0) { 44 | Write-Host "********************************************************************" -ForegroundColor Red 45 | Write-Host 46 | Write-Host "An update is available." -ForegroundColor Green 47 | Write-Host 48 | Write-Host "Please make sure the Minecraft Server is offline before you continue." -ForegroundColor Red 49 | Write-Host 50 | Write-Host "********************************************************************" -ForegroundColor Red 51 | Read-Host -Prompt "Press any key to continue or CTRL+C to quit" 52 | } 53 | 54 | return $commitsBehind -ne 0 55 | } 56 | 57 | function Backup-ModsFolder { 58 | Write-Host 59 | Write-Host "Backing up the mods folder..." -ForegroundColor Cyan 60 | New-Item -ItemType Directory -Path $backupFolder -ErrorAction SilentlyContinue 61 | New-Item -ItemType Directory -Path "$backupFolder/mods" -ErrorAction SilentlyContinue 62 | if (Test-Path $modFolder) { 63 | if ((Get-ChildItem -Path $modFolder | Measure-Object).Count -gt 0) { 64 | Compress-Archive -Path $modFolder "$backupFolder/mods/$(Get-Date -Format "MM.dd.yyyy-HH.mm").zip" 65 | Remove-Item -Path $modFolder -Recurse -ErrorAction SilentlyContinue 66 | } 67 | } 68 | else { 69 | New-Item -ItemType Directory -Path $modFolder -ErrorAction SilentlyContinue 70 | } 71 | } 72 | 73 | function Prune-Backups { 74 | Write-Host 75 | Write-Host "Pruning backups folder contents..." -ForegroundColor Cyan 76 | Write-Host "The current limit for backups to keep is $backupsToKeep" 77 | if (Test-Path $backupFolder) { 78 | $backupFiles = Get-ChildItem -Path $backupFolder 79 | $backupFileCount = ($backupFiles | Measure-Object ).Count 80 | if ($backupFileCount -gt $backupsToKeep) { 81 | $backupFiles | 82 | Sort-Object -Property CreationTime -Descending | 83 | Select-Object -Last ($backupFileCount - $backupsToKeep) | 84 | Foreach-Object { Remove-Item "$backupFolder/$_" } 85 | } 86 | } 87 | else { 88 | Write-Host "No backups found." 89 | } 90 | } 91 | 92 | function Backup-WorldFolder { 93 | Write-Host 94 | Write-Host "Backing up the world folder..." -ForegroundColor Cyan 95 | New-Item -ItemType Directory -Path $backupFolder -ErrorAction SilentlyContinue 96 | if (Test-Path $worldFolder) { 97 | if ((Get-ChildItem -Path $worldFolder | Measure-Object).Count -gt 0) { 98 | Compress-Archive -Path $worldFolder "$backupFolder/world-$(Get-Date -Format "MM.dd.yyyy-HH.mm").zip" 99 | } 100 | } 101 | else { 102 | New-Item -ItemType Directory -Path $worldFolder -ErrorAction SilentlyContinue 103 | } 104 | } 105 | 106 | function Pull-Changes { 107 | Write-Host 108 | Write-Host "Pulling changes from Git..." -ForegroundColor Cyan 109 | git stash 110 | git reset --hard 111 | git pull origin $targetBranch 112 | } 113 | 114 | function Move-ServerFiles { 115 | Write-Host 116 | Write-Host "Copying server files to base folder..." -ForegroundColor Cyan 117 | Write-Host "This will not overwrite existing files." -ForegroundColor Gray 118 | @( 119 | "automation/settings.cfg", 120 | "automation/start-automated-server.bat", 121 | "automation/start-automated-server.sh" 122 | ) | ForEach-Object { 123 | $splitFileName = $_ -split "/" 124 | $fileName = $splitFileName[$splitFileName.length - 1] 125 | $destination = "$fileName" 126 | if (-not (Test-Path $destination)) { 127 | Copy-Item -Path $_ -Destination $destination 128 | } 129 | } 130 | } 131 | 132 | function Remove-ClientOnlyMods { 133 | . "automation/remove-client-mods.ps1" 134 | } 135 | 136 | 137 | function Copy-Overrides { 138 | Write-Host 139 | Write-Host "Copying contents of the overrides folder..." -ForegroundColor Cyan 140 | Write-Host "This will overwrite existing files." -ForegroundColor Yellow 141 | Get-ChildItem -Path $overridesFolder -Recurse | ForEach-Object { 142 | $CopyFrom = $_.FullName 143 | $CopyTo = $_.FullName.Replace("\overrides", "").Replace("/overrides", "") 144 | Copy-Item -Path $CopyFrom -Destination $CopyTo -Force 145 | } 146 | } 147 | 148 | Determine-Location 149 | 150 | if (Update-IsAvailable) { 151 | Prune-Backups 152 | Backup-ModsFolder 153 | Backup-WorldFolder 154 | Pull-Changes 155 | } 156 | 157 | Move-ServerFiles 158 | Remove-ClientOnlyMods 159 | Copy-Overrides 160 | 161 | Set-Location $initialLocation -------------------------------------------------------------------------------- /config/simplemagnets-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [General] 3 | #In what range should the Basic Magnet pickup items and xp? 4 | #Requires a world reload 5 | #Allowed Range: 1 ~ 20 Default: 5 6 | basicMagnetRange = 5 7 | #What is the minimum range of the Advanced Magnet? 8 | #Requires a world reload 9 | #Allowed Range: 1 ~ 20 Default: 3 10 | advancedMagnetMinRange = 3 11 | #What is the maximum range of the Advanced Magnet? 12 | #Requires a world reload 13 | #Allowed Range: 1 ~ 20 Default: 11 14 | advancedMagnetMaxRange = 11 15 | #In what range should the Advanced Magnet pickup items and xp by default? 16 | #Requires a world reload 17 | #Allowed Range: 1 ~ 20 Default: 8 18 | advancedMagnetRange = 8 19 | 20 | [General."Demagnetization Coils"] 21 | #In what range should the Basic Demagnetization Coil demagnetize items by default? 22 | #Requires a world reload 23 | #Allowed Range: 1 ~ 10 Default: 2 24 | basicCoilRange = 2 25 | #What is the maximum range of the Basic Demagnetization Coil? 26 | #Requires a world reload 27 | #Allowed Range: 1 ~ 10 Default: 3 28 | basicCoilMaxRange = 3 29 | #Should the Basic Demagnetization Coil be able to filter items? 30 | #Requires a world reload 31 | #Allowed Values: true, false Default: false 32 | basicCoilFilter = false 33 | #In what range should the Advanced Demagnetization Coil pickup items and xp by default? 34 | #Requires a world reload 35 | #Allowed Range: 1 ~ 10 Default: 3 36 | advancedCoilRange = 3 37 | #What is the minimum range of the Advanced Demagnetization Coil? 38 | #Requires a world reload 39 | #Allowed Range: 1 ~ 10 Default: 1 40 | advancedCoilMinRange = 1 41 | #What is the maximum range of the Advanced Demagnetization Coil? 42 | #Requires a world reload 43 | #Allowed Range: 1 ~ 10 Default: 5 44 | advancedCoilMaxRange = 5 45 | #What is the minimum range of the Basic Demagnetization Coil? 46 | #Requires a world reload 47 | #Allowed Range: 1 ~ 10 Default: 1 48 | basicCoilMinRange = 1 49 | #Should the Advanced Demagnetization Coil be able to filter items? 50 | #Requires a world reload 51 | #Allowed Values: true, false Default: true 52 | advancedCoilFilter = true 53 | 54 | [Client] 55 | #Should the Demagnetization Coil's range be highlighted when looking at it? 56 | #Requires a world reload 57 | #Allowed Values: true, false Default: true 58 | showDemagnetizationArea = true 59 | #Should the magnet play a ding sound when turned on or off? 60 | #Requires a world reload 61 | #Allowed Values: true, false Default: true 62 | playToggleSound = true 63 | #Should the magnet display a message on screen when turned on or off? 64 | #Requires a world reload 65 | #Allowed Values: true, false Default: true 66 | showToggleMessage = true 67 | 68 | [Client.General] 69 | #In what range should the Basic Magnet pickup items and xp? 70 | #Requires a world reload 71 | #Allowed Range: 1 ~ 20 Default: 5 72 | basicMagnetRange = 5 73 | #What is the minimum range of the Advanced Magnet? 74 | #Requires a world reload 75 | #Allowed Range: 1 ~ 20 Default: 3 76 | advancedMagnetMinRange = 3 77 | #What is the maximum range of the Advanced Magnet? 78 | #Requires a world reload 79 | #Allowed Range: 1 ~ 20 Default: 11 80 | advancedMagnetMaxRange = 11 81 | #In what range should the Advanced Magnet pickup items and xp by default? 82 | #Requires a world reload 83 | #Allowed Range: 1 ~ 20 Default: 8 84 | advancedMagnetRange = 8 85 | 86 | [Client.General."Demagnetization Coils"] 87 | #In what range should the Basic Demagnetization Coil demagnetize items by default? 88 | #Requires a world reload 89 | #Allowed Range: 1 ~ 10 Default: 2 90 | basicCoilRange = 2 91 | #What is the maximum range of the Basic Demagnetization Coil? 92 | #Requires a world reload 93 | #Allowed Range: 1 ~ 10 Default: 3 94 | basicCoilMaxRange = 3 95 | #Should the Basic Demagnetization Coil be able to filter items? 96 | #Requires a world reload 97 | #Allowed Values: true, false Default: false 98 | basicCoilFilter = false 99 | #In what range should the Advanced Demagnetization Coil pickup items and xp by default? 100 | #Requires a world reload 101 | #Allowed Range: 1 ~ 10 Default: 3 102 | advancedCoilRange = 3 103 | #What is the minimum range of the Advanced Demagnetization Coil? 104 | #Requires a world reload 105 | #Allowed Range: 1 ~ 10 Default: 1 106 | advancedCoilMinRange = 1 107 | #What is the maximum range of the Advanced Demagnetization Coil? 108 | #Requires a world reload 109 | #Allowed Range: 1 ~ 10 Default: 5 110 | advancedCoilMaxRange = 5 111 | #What is the minimum range of the Basic Demagnetization Coil? 112 | #Requires a world reload 113 | #Allowed Range: 1 ~ 10 Default: 1 114 | basicCoilMinRange = 1 115 | #Should the Advanced Demagnetization Coil be able to filter items? 116 | #Requires a world reload 117 | #Allowed Values: true, false Default: true 118 | advancedCoilFilter = true 119 | 120 | [Client.Client] 121 | #Should the Demagnetization Coil's range be highlighted when looking at it? 122 | #Requires a world reload 123 | #Allowed Values: true, false Default: true 124 | showDemagnetizationArea = true 125 | #Should the magnet play a ding sound when turned on or off? 126 | #Requires a world reload 127 | #Allowed Values: true, false Default: true 128 | playToggleSound = true 129 | #Should the magnet display a message on screen when turned on or off? 130 | #Requires a world reload 131 | #Allowed Values: true, false Default: true 132 | showToggleMessage = true 133 | 134 | -------------------------------------------------------------------------------- /changelogs/modlist_1.0.4.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.0.4 2 | - [[Forge 1.16.4/5] v1.12.149](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3302580) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 3 | - [AutoRegLib-1.6-47.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/files/3128555) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 4 | - [BetterAdvancements-1.16.5-0.1.0.105](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3218942) (by [way2muchnoise](https://www.curseforge.com/members/way2muchnoise/projects)) 5 | - [buildinggadgets-1.16.5-3.8.0.jar](https://www.curseforge.com/minecraft/mc-mods/building-gadgets/files/3205295) (by [Direwolf20](https://www.curseforge.com/members/direwolf20/projects)) 6 | - [chocolate-1.3.0-1.16.4.jar](https://www.curseforge.com/minecraft/mc-mods/chocolate-fix/files/3166929) (by [AlcatrazEscapee](https://www.curseforge.com/members/alcatrazescapee/projects)) 7 | - [Chunk Pregenerator-V1.16-3.0.5](https://www.curseforge.com/minecraft/mc-mods/chunkpregenerator/files/3237965) (by [Speiger](https://www.curseforge.com/members/speiger/projects)) 8 | - [[Forge 1.16.4/5] v4.11.19](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3261152) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 9 | - [cobblegenrandomizer-1.16-5.1.2.jar](https://www.curseforge.com/minecraft/mc-mods/cobblegenrandomizer/files/3147020) (by [HorribleNerd](https://www.curseforge.com/members/horriblenerd/projects)) 10 | - [EasyPaxelLITE(Forge1.16.4)vrs1.0.1](https://www.curseforge.com/minecraft/mc-mods/colds-easy-paxel-lite/files/3303962) (by [Coldspell_Games](https://www.curseforge.com/members/coldspell_games/projects)) 11 | - [constructionwand-1.16.5-2.2.jar](https://www.curseforge.com/minecraft/mc-mods/construction-wand/files/3285196) (by [ThetaDev](https://www.curseforge.com/members/thetadev/projects)) 12 | - [1.16.2+ (3.0.2)](https://www.curseforge.com/minecraft/mc-mods/cookiecore/files/3158118) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 13 | - [Create 1.16.4+ v0.3.1c](https://www.curseforge.com/minecraft/mc-mods/create/files/3278516) (by [simibubi](https://www.curseforge.com/members/simibubi/projects)) 14 | - [DrawersTooltip-1.16.2-2.1.0.jar](https://www.curseforge.com/minecraft/mc-mods/drawers-tooltip/files/3035686) (by [Snownee_](https://www.curseforge.com/members/snownee_/projects)) 15 | - [dynviewdist-1.9.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/files/3217166) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 16 | - [exnihilosequentia-1.16-2.0.2.6.jar](https://www.curseforge.com/minecraft/mc-mods/ex-nihilo-sequentia/files/3294507) (by [NovaMachina](https://www.curseforge.com/members/novamachina/projects)) 17 | - [ftb-ultimine-1605.2.0-build.26-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3269868) (by [FTB](https://www.curseforge.com/members/ftb/projects)) 18 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/files/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 19 | - [jei-1.16.5-7.6.4.90.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3295418) (by [mezz](https://www.curseforge.com/members/mezz/projects)) 20 | - [kubejs-1605.3.7-build.192-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3304232) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 21 | - [kubejs-create-1604.1.0.4.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-create/files/3169448) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 22 | - [1.16.2 - 1.16.5 (3.2.0)](https://www.curseforge.com/minecraft/mc-mods/magic-feather/files/3224434) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 23 | - [PackMenu-1.16.4-2.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/packmenu/files/3292171) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 24 | - [Placebo-1.16.4-4.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3281276) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 25 | - [Quark-r2.4-311.jar](https://www.curseforge.com/minecraft/mc-mods/quark/files/3282239) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 26 | - [Refined Storage 1.9.12](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3196167) (by [raoulvdberge](https://www.curseforge.com/members/raoulvdberge/projects)) 27 | - [rhino-1.7.13-build.23.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3279704) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 28 | - [serverconfigupdater-1.3.jar](https://www.curseforge.com/minecraft/mc-mods/serverconfig-updater/files/3034936) (by [Darkere](https://www.curseforge.com/members/darkere/projects)) 29 | - [simplemagnets-1.1.2-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/simple-magnets/files/3239732) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 30 | - [StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3180569) (by [Texelsaur](https://www.curseforge.com/members/texelsaur/projects)) 31 | - [supermartijn642configlib-1.0.5a-mc1.16](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-config-lib/files/3226128) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 32 | - [supermartijn642corelib-1.0.3-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/3300632) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 33 | - [TheOneProbe - 1.16-3.0.8](https://www.curseforge.com/minecraft/mc-mods/the-one-probe/files/3303361) (by [McJty](https://www.curseforge.com/members/mcjty/projects)) 34 | -------------------------------------------------------------------------------- /changelogs/changelog_mods_1.0.5.md: -------------------------------------------------------------------------------- 1 | # CreateTogether 1.0.4⟶CreateTogether 1.0.5 2 | 3 | ## Added 4 | 5 | * [Clumps](https://www.curseforge.com/minecraft/mc-mods/clumps) 6 | * [Decorative Blocks](https://www.curseforge.com/minecraft/mc-mods/decorative-blocks) 7 | * [FastFurnace](https://www.curseforge.com/minecraft/mc-mods/fastfurnace) 8 | * [FastSuite](https://www.curseforge.com/minecraft/mc-mods/fastsuite) 9 | * [FastWorkbench](https://www.curseforge.com/minecraft/mc-mods/fastworkbench) 10 | * [Lazy DataFixerUpper(LazyDFU) [FORGE]](https://www.curseforge.com/minecraft/mc-mods/lazy-dfu-forge) 11 | 12 | ## Updated 13 | 14 | ### [Architectury API (Forge)](https://www.curseforge.com/minecraft/mc-mods/architectury-forge) ([[Forge 1.16.4/5] v1.12.149](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3302580)⟶[[Forge 1.16.4/5] v1.13.153](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3307825)) 15 | 16 | #### [[Forge 1.16.4/5] v1.13.153](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3307825) 17 | 18 | Architectury v1.13.153 for 1.16.4/5 19 | 20 | Updated at 2021-05-13 05:16. 21 | 22 | [Click here for changelog](https://www.github.com/architectury/architectury/commits/c675bf6) 23 | 24 | * Adds EntityAttributes (#83) 25 | * Allow being more flexible in registering 26 | * Add FuelRegistry (#81) 27 | * Remove @NotNull spam Things should be non null by default, and we mark @Nullable otherwise 28 | * Fixes CME with Platform#getMod 29 | * Update to Architectury Plugin 3.1 to support detecting the api FabricLoader 30 | * Add interruptTrue/Default/False as util methods 31 | * Bump to 1.11 32 | * Some more (mostly Entity-based) Events (#75) 33 | * Re-license header 34 | * Add docs 35 | * Add getCustomEquipmentSlot 36 | * Close #39 37 | * Fix invalid events 38 | * Bump forge event priority to HIGH 39 | * Add EntityHooks.fromCollision to retrieve an entity from block collision (#64) 40 | * Add @SubscribeEvent to ColorHandlersImpl 41 | * Remove addListener from ColorHandlersImpl 42 | * Fix Forge Screen Events to be consistent with the fabric implementation: InteractionResult.SUCCESS should also indicate that the event should be cancelled. 43 | * More annotation event migration 44 | * Migrate Forge ReloadListeners events to annotations 45 | * Fix CLIENT_WORLD_LOAD on Forge 46 | * Bump to 1.9 47 | * Change at 48 | * Rewrite the GuiEvent.SET_SCREEN mixin to fix #35 49 | * Update plugins 50 | * Add lightning strikes to the debug mod 51 | * Update plugin 52 | * Update plugins 53 | * Add EntityRenderers (#52) 54 | * Fix BlockEntityExtension @Shadow remapping 55 | * Update architectury-plugin to 3.0.89 and fix #51 56 | * Revert "Remove locals requirements from BlockLandingInvoker" 57 | * Remove local testing build of transformer 58 | * Remove locals requirements from BlockLandingInvoker 59 | * Update architectury-plugin to 3.0.88 60 | * Implement onDataPacket (#48) 61 | * Add null checks to networking for better errors. 62 | * Remove jcenter from settings.gradle 63 | * Bump to 1.8 64 | * Fix block entity without position 65 | * Implement Tag#equals and Tag#hashCode on forge because forge is nice 66 | * Add license 67 | * Add test mod and fix game rules on forge 68 | * Add licenses and implement optional tags, requires some testing. 69 | * Fix forge publishing as fabric 70 | * Migrate to Arch Plugin 3 71 | 72 | [(129 more lines)](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3307825) 73 | 74 | #### [3 more entries](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/all) 75 | 76 | ### [Cloth Config API (Forge)](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge) ([[Forge 1.16.4/5] v4.11.19](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3261152)⟶[[Forge 1.16.4/5] v4.11.24](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3304791)) 77 | 78 | #### [[Forge 1.16.4/5] v4.11.24](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3304791) 79 | 80 | No changelog available. 81 | 82 | ### [Just Enough Items (JEI)](https://www.curseforge.com/minecraft/mc-mods/jei) ([jei-1.16.5-7.6.4.90.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3295418)⟶[jei-1.16.5-7.7.0.91.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3308495)) 83 | 84 | #### [Just Enough Items (JEI) 7.7.0](https://www.curseforge.com/minecraft/mc-mods/jei/files/3308495) 85 | 86 | * [Update FTB Library integration (#2334)](https://github.com/mezz/JustEnoughItems/commit/788e6d8ee8c7d0a8c84da4e650b0ad12704f420b) - Kristi��ns Mic��tis 87 | * [Update fr_fr.json (#2348)](https://github.com/mezz/JustEnoughItems/commit/785d1b1b126cf52d0f213db00a0f0ae706354aa1) - Aarrn33 88 | 89 | ### [KubeJS (Forge)](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge) ([kubejs-1605.3.7-build.192-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3304232)⟶[kubejs-1605.3.7-build.196-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3309392)) 90 | 91 | #### [kubejs-1605.3.7-build.196-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3309392) 92 | 93 | * Fixed crash with fluids, removed Resourceful Bees runtime dep - LatvianModder 94 | 95 | #### [3 more entries](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/all) 96 | 97 | ### [Rhino](https://www.curseforge.com/minecraft/mc-mods/rhino) ([rhino-1.7.13-build.23.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3279704)⟶[rhino-1.7.13-build.24.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3306904)) 98 | 99 | #### [rhino-1.7.13-build.24.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3306904) 100 | 101 | * First attempt at cheesing CF's one-loader problem - Max 102 | 103 | Generated using [ChangelogGenerator 2.0.0-pre10](https://github.com/TheRandomLabs/ChangelogGenerator). 104 | -------------------------------------------------------------------------------- /defaultconfigs/invtweaks-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #Sorting customization 3 | [sorting] 4 | #Rules for sorting 5 | #Each element is of the form 6 | #A-D is the row from top to bottom 7 | #1-9 is the column from left to right 8 | #POS denotes the target slots 9 | #Exs. POS = D3 means 3rd slot of hotbar 10 | # POS = B means 2nd row, left to right 11 | # POS = 9 means 9th column, bottom to top 12 | # POS = A1-C9 means slots A1,A2,…,A9,B1,…,B9,C1,…,C9 13 | # POS = A9-C1 means slots A9,A8,…,A1,B9,…,B1,C9,…,C1 14 | #Append v to POS of the form A1-C9 to move in columns instead of rows 15 | #Append r to POS of the form B or 9 to reverse slot order 16 | #CATEGORY is the item category to designate the slots to 17 | #CATEGORY = /LOCKED prevents slots from moving in sorting 18 | #CATEGORY = /FROZEN has the effect of /LOCKED and, in addition, ignores slot in auto-refill 19 | #CATEGORY = /OTHER covers all remaining items after other rules are exhausted 20 | rules = ["D /LOCKED", "A1-C9 /OTHER"] 21 | 22 | #Custom settings per GUI 23 | #x = x-position of external sort button relative to GUI top left 24 | #y = same as above except for the y-position 25 | #Omit x and y to leave position unchanged 26 | #sortRange = slots to sort 27 | #E.g. sortRange = "5,0-2" sorts slots 5,0,1,2 in that order 28 | #sortRange = "" disables sorting for that container 29 | #Out-of-bound slots are ignored 30 | #Omit sortRange to leave as default 31 | [[sorting.containerOverrides]] 32 | containerClass = "com.tfar.craftingstation.CraftingStationContainer" 33 | sortRange = "" 34 | 35 | [[sorting.containerOverrides]] 36 | containerClass = "com.refinedmods.refinedstorage.container.GridContainer" 37 | sortRange = "" 38 | 39 | [[sorting.containerOverrides]] 40 | containerClass = "com.refinedmods.refinedstorage.container.CrafterManagerContainer" 41 | sortRange = "" 42 | 43 | [[sorting.containerOverrides]] 44 | containerClass = "com.refinedmods.refinedstorage.container.DiskManipulatorContainer" 45 | sortRange = "" 46 | 47 | [[sorting.containerOverrides]] 48 | containerClass = "appeng.container.implementations.MEMonitorableContainer" 49 | sortRange = "" 50 | 51 | [[sorting.containerOverrides]] 52 | containerClass = "appeng.container.implementations.PatternTermContainer" 53 | sortRange = "" 54 | 55 | [[sorting.containerOverrides]] 56 | containerClass = "appeng.container.implementations.CraftingTermContainer" 57 | sortRange = "" 58 | 59 | [[sorting.containerOverrides]] 60 | containerClass = "appeng.container.implementations.InterfaceTerminalContainer" 61 | sortRange = "" 62 | 63 | [[sorting.containerOverrides]] 64 | containerClass = "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableContainer" 65 | sortRange = "9-26" 66 | 67 | [[sorting.containerOverrides]] 68 | containerClass = "blusunrize.immersiveengineering.common.gui.CraftingTableContainer" 69 | sortRange = "" 70 | 71 | [[sorting.containerOverrides]] 72 | containerClass = "se.mickelus.tetra.blocks.workbench.WorkbenchContainer" 73 | sortRange = "" 74 | 75 | [[sorting.containerOverrides]] 76 | containerClass = "mcjty.rftoolsstorage.modules.scanner.blocks.StorageScannerContainer" 77 | sortRange = "" 78 | 79 | [[sorting.containerOverrides]] 80 | containerClass = "mcjty.rftoolsstorage.modules.modularstorage.blocks.ModularStorageContainer" 81 | sortRange = "" 82 | 83 | [[sorting.containerOverrides]] 84 | containerClass = "mcjty.rftoolsutility.modules.crafter.blocks.CrafterContainer" 85 | sortRange = "" 86 | 87 | #Categor(y/ies) for sorting 88 | # 89 | #name: the name of the category 90 | # 91 | #spec: 92 | #Each element denotes a series of semicolon-separated clauses 93 | #Items need to match all clauses of at least one element 94 | #Items matching earlier elements are earlier in order 95 | #A clause of the form /tag: matches a tag 96 | #Clauses /instanceof: or /class: check if item is 97 | #instance of class or exactly of that class respectively 98 | #Specifying an item's registry name as a clause checks for that item 99 | #Prepending an exclamation mark at the start of a clause inverts it 100 | [[sorting.category]] 101 | name = "sword" 102 | spec = ["/instanceof:net.minecraft.item.SwordItem"] 103 | 104 | [[sorting.category]] 105 | name = "axe" 106 | spec = ["/instanceof:net.minecraft.item.AxeItem"] 107 | 108 | [[sorting.category]] 109 | name = "pickaxe" 110 | spec = ["/instanceof:net.minecraft.item.PickaxeItem"] 111 | 112 | [[sorting.category]] 113 | name = "shovel" 114 | spec = ["/instanceof:net.minecraft.item.ShovelItem"] 115 | 116 | [[sorting.category]] 117 | name = "acceptableFood" 118 | spec = ["/instanceof:net.minecraft.item.Food; !minecraft:rotten_flesh; !minecraft:spider_eye; !minecraft:poisonous_potato; !minecraft:pufferfish"] 119 | 120 | [[sorting.category]] 121 | name = "torch" 122 | spec = ["minecraft:torch"] 123 | 124 | [[sorting.category]] 125 | name = "cheapBlocks" 126 | spec = ["/tag:forge:cobblestone", "/tag:forge:dirt"] 127 | 128 | [[sorting.category]] 129 | name = "blocks" 130 | spec = ["/instanceof:net.minecraft.item.BlockItem"] 131 | 132 | #Tweaks 133 | [tweaks] 134 | #0 = disable buttons (i.e. keybind only) 135 | #1 = buttons for player sorting only 136 | #2 = buttons for external sorting only 137 | #3 = all buttons enabled (default) 138 | #Range: 0 ~ 3 139 | enableButtons = 0 140 | #Enable auto-refill 141 | autoRefill = true 142 | #0 = disable sorting 143 | #1 = player sorting only 144 | #2 = external sorting only 145 | #3 = all sorting enabled (default) 146 | #Range: 0 ~ 3 147 | enableSort = 3 148 | #Enable a quick view of how many items that you're currently holding exists in your inventory by displaying it next your hotbar. 149 | quickView = true 150 | 151 | -------------------------------------------------------------------------------- /config/defaultoptions/keybindings.txt: -------------------------------------------------------------------------------- 1 | key_key.attack:key.mouse.left:NONE 2 | key_key.use:key.mouse.right:NONE 3 | key_key.forward:key.keyboard.w:NONE 4 | key_key.left:key.keyboard.a:NONE 5 | key_key.back:key.keyboard.s:NONE 6 | key_key.right:key.keyboard.d:NONE 7 | key_key.jump:key.keyboard.space:NONE 8 | key_key.sneak:key.keyboard.left.shift:NONE 9 | key_key.sprint:key.keyboard.left.control:NONE 10 | key_key.drop:key.keyboard.q:NONE 11 | key_key.inventory:key.keyboard.e:NONE 12 | key_key.chat:key.keyboard.t:NONE 13 | key_key.playerlist:key.keyboard.tab:NONE 14 | key_key.pickItem:key.mouse.middle:NONE 15 | key_key.command:key.keyboard.slash:NONE 16 | key_key.socialInteractions:key.keyboard.p:NONE 17 | key_key.screenshot:key.keyboard.f2:NONE 18 | key_key.togglePerspective:key.keyboard.f5:NONE 19 | key_key.smoothCamera:key.keyboard.unknown:NONE 20 | key_key.fullscreen:key.keyboard.f11:NONE 21 | key_key.spectatorOutlines:key.keyboard.unknown:NONE 22 | key_key.swapOffhand:key.keyboard.f:NONE 23 | key_key.saveToolbarActivator:key.keyboard.c:NONE 24 | key_key.loadToolbarActivator:key.keyboard.x:NONE 25 | key_key.advancements:key.keyboard.l:NONE 26 | key_key.hotbar.1:key.keyboard.1:NONE 27 | key_key.hotbar.2:key.keyboard.2:NONE 28 | key_key.hotbar.3:key.keyboard.3:NONE 29 | key_key.hotbar.4:key.keyboard.4:NONE 30 | key_key.hotbar.5:key.keyboard.5:NONE 31 | key_key.hotbar.6:key.keyboard.6:NONE 32 | key_key.hotbar.7:key.keyboard.7:NONE 33 | key_key.hotbar.8:key.keyboard.8:NONE 34 | key_key.hotbar.9:key.keyboard.9:NONE 35 | key_key.secondarySprint:key.keyboard.w:NONE 36 | key_key.dismount:key.keyboard.left.shift:NONE 37 | key_key.narrator:key.keyboard.b:CONTROL 38 | key_key.pause:key.keyboard.escape:NONE 39 | key_key.gui:key.keyboard.f1:NONE 40 | key_key.debugInfo:key.keyboard.f3:NONE 41 | key_key.ftbultimine:key.keyboard.grave.accent:NONE 42 | key_key.ftbchunks.map:key.keyboard.unknown:NONE 43 | key_keys.simplemagnets.toggle:key.keyboard.h:NONE 44 | key_key.toggleLiquids:key.keyboard.unknown:NONE 45 | key_key.toggleVisible:key.keyboard.unknown:NONE 46 | key_key.invtweaks_sort_player.desc:key.keyboard.unknown:NONE 47 | key_key.invtweaks_sort_inventory.desc:key.keyboard.unknown:NONE 48 | key_key.invtweaks_sort_either.desc:key.mouse.middle:NONE 49 | key_placebo.toggleWings:key.keyboard.keypad.8:NONE 50 | key_placebo.toggleTrails:key.keyboard.keypad.9:NONE 51 | key_key.buildinggadgets.settings_menu:key.keyboard.g:NONE 52 | key_key.buildinggadgets.range:key.keyboard.r:NONE 53 | key_key.buildinggadgets.undo:key.keyboard.u:NONE 54 | key_key.buildinggadgets.anchor:key.keyboard.h:NONE 55 | key_key.buildinggadgets.fuzzy:key.keyboard.unknown:NONE 56 | key_key.buildinggadgets.connected_area:key.keyboard.unknown:NONE 57 | key_key.buildinggadgets.rotate_mirror:key.keyboard.unknown:NONE 58 | key_key.buildinggadgets.material_list:key.keyboard.m:NONE 59 | key_key.refinedstorage.focusSearchBar:key.keyboard.tab:NONE 60 | key_key.refinedstorage.clearGridCraftingMatrix:key.keyboard.x:CONTROL 61 | key_key.refinedstorage.openWirelessGrid:key.keyboard.unknown:NONE 62 | key_key.refinedstorage.openWirelessFluidGrid:key.keyboard.unknown:NONE 63 | key_key.refinedstorage.openWirelessCraftingMonitor:key.keyboard.unknown:NONE 64 | key_key.refinedstorage.openPortableGrid:key.keyboard.unknown:NONE 65 | key_key.simplybackpacks.backpackpickup.desc:key.keyboard.unknown:NONE 66 | key_key.simplybackpacks.backpackopen.desc:key.keyboard.unknown:NONE 67 | key_quark.keybind.autorun:key.keyboard.caps.lock:NONE 68 | key_quark.keybind.change_hotbar:key.keyboard.z:NONE 69 | key_quark.keybind.transfer_insert:key.keyboard.unknown:NONE 70 | key_quark.keybind.transfer_extract:key.keyboard.unknown:NONE 71 | key_quark.keybind.shift_lock:key.keyboard.unknown:NONE 72 | key_quark.keybind.camera_mode:key.keyboard.f12:NONE 73 | key_create.keyinfo.toolmenu:key.keyboard.left.alt:NONE 74 | key_quark.keybind.back:key.mouse.4:NONE 75 | key_quark.keybind.lock_rotation:key.keyboard.k:NONE 76 | key_quark.emote.no:key.keyboard.unknown:NONE 77 | key_quark.emote.yes:key.keyboard.unknown:NONE 78 | key_quark.emote.wave:key.keyboard.unknown:NONE 79 | key_quark.emote.salute:key.keyboard.unknown:NONE 80 | key_quark.emote.cheer:key.keyboard.unknown:NONE 81 | key_quark.emote.clap:key.keyboard.unknown:NONE 82 | key_quark.emote.think:key.keyboard.unknown:NONE 83 | key_quark.emote.point:key.keyboard.unknown:NONE 84 | key_quark.emote.shrug:key.keyboard.unknown:NONE 85 | key_quark.emote.headbang:key.keyboard.unknown:NONE 86 | key_quark.emote.weep:key.keyboard.unknown:NONE 87 | key_quark.emote.facepalm:key.keyboard.unknown:NONE 88 | key_quark.keybind.patreon_emote.dance:key.keyboard.unknown:NONE 89 | key_quark.keybind.patreon_emote.tpose:key.keyboard.unknown:NONE 90 | key_quark.keybind.patreon_emote.dab:key.keyboard.unknown:NONE 91 | key_quark.keybind.patreon_emote.jet:key.keyboard.unknown:NONE 92 | key_quark.keybind.patreon_emote.exorcist:key.keyboard.unknown:NONE 93 | key_quark.keybind.patreon_emote.zombie:key.keyboard.unknown:NONE 94 | key_quark.keybind.sort_player:key.keyboard.unknown:NONE 95 | key_quark.keybind.sort_container:key.keyboard.unknown:NONE 96 | key_Options Gui:key.keyboard.unknown:NONE 97 | key_key.moreoverlays.lightoverlay.desc:key.keyboard.f7:NONE 98 | key_key.moreoverlays.chunkbounds.desc:key.keyboard.f9:NONE 99 | key_key.jei.toggleOverlay:key.keyboard.o:CONTROL 100 | key_key.jei.focusSearch:key.keyboard.f:CONTROL 101 | key_key.jei.toggleCheatMode:key.keyboard.unknown:NONE 102 | key_key.jei.toggleEditMode:key.keyboard.unknown:NONE 103 | key_key.jei.showRecipe:key.keyboard.r:NONE 104 | key_key.jei.showUses:key.keyboard.u:NONE 105 | key_key.jei.recipeBack:key.keyboard.backspace:NONE 106 | key_key.jei.previousPage:key.keyboard.page.up:NONE 107 | key_key.jei.nextPage:key.keyboard.page.down:NONE 108 | key_key.jei.previousCategory:key.keyboard.page.up:SHIFT 109 | key_key.jei.nextCategory:key.keyboard.page.down:SHIFT 110 | key_key.jei.bookmark:key.keyboard.a:NONE 111 | key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown:NONE 112 | -------------------------------------------------------------------------------- /defaultconfigs/theoneprobe-client.toml: -------------------------------------------------------------------------------- 1 | #Show tank setting (0 = not, 1 = always, 2 = sneak) 2 | showTankSetting = "EXTENDED" 3 | #The distance to the top side of the screen. Use -1 if you don't want to set this 4 | #Range: -1 ~ 10000 5 | boxTopY = 5 6 | #The distance to the right side of the screen. Use -1 if you don't want to set this 7 | #Range: -1 ~ 10000 8 | boxRightX = -1 9 | #The maximum packet size to send an itemstack from client to server. Reduce this if you have issues with network lag caused by TOP 10 | #Range: -1 ~ 32768 11 | maxPacketToServer = 20000 12 | #Reveal monster eggs (0 = not, 1 = always, 2 = sneak) 13 | showSilverfish = "NOT" 14 | #Distance at which the probe works 15 | #Range: 0.1 ~ 200.0 16 | probeDistance = 6.0 17 | #Show brewing stand setting (0 = not, 1 = always, 2 = sneak) 18 | showBrewStandSetting = "NORMAL" 19 | #Show if the block can be harvested (0 = not, 1 = always, 2 = sneak) 20 | showCanBeHarvested = "NORMAL" 21 | #Show the growth level of crops (0 = not, 1 = always, 2 = sneak) 22 | showCropPercentage = "NORMAL" 23 | #0 means don't show break progress, 1 is show as bar, 2 is show as text 24 | #Range: 0 ~ 2 25 | showBreakProgress = 1 26 | #Show mod name (0 = not, 1 = always, 2 = sneak) 27 | showModName = "NORMAL" 28 | #The distance to the left side of the screen. Use -1 if you don't want to set this 29 | #Range: -1 ~ 10000 30 | boxLeftX = -1 31 | #The amount of milliseconds to wait before updating probe information from the server 32 | #Range: 10 ~ 100000 33 | timeout = 300 34 | #Thickness of the border of the box (0 to disable) 35 | #Range: 0 ~ 20 36 | boxThickness = 0 37 | #Show redstone (0 = not, 1 = always, 2 = sneak) 38 | showRedstone = "NORMAL" 39 | #Show harvest level (0 = not, 1 = always, 2 = sneak) 40 | showHarvestLevel = "NORMAL" 41 | #Color of the border of the chest contents box (0 to disable) 42 | chestContentsBorderColor = "ff006699" 43 | #Show horse stats setting (0 = not, 1 = always, 2 = sneak) 44 | showHorseStatSetting = "EXTENDED" 45 | #How much the border should be offset (i.e. to create an 'outer' border) 46 | #Range: 0 ~ 20 47 | boxOffset = 0 48 | #If true show liquid information when the probe hits liquid first 49 | showLiquids = false 50 | #true means shows harvestability with vanilla style icons 51 | harvestStyleVanilla = true 52 | #Show lever/comparator/repeater settings (0 = not, 1 = always, 2 = sneak) 53 | showLeverSetting = "NORMAL" 54 | #Show mob spawner setting (0 = not, 1 = always, 2 = sneak) 55 | showMobSpawnerSetting = "NORMAL" 56 | #Toggle default probe visibility (client can override) 57 | isVisible = true 58 | #The amount of milliseconds to wait before showing a 'fetch from server' info on the client (if the server is slow to respond) (-1 to disable this feature) 59 | #Range: -1 ~ 100000 60 | waitingForServerTimeout = 2000 61 | #Show animal owner setting (0 = not, 1 = always, 2 = sneak) 62 | showAnimalOwnerSetting = "EXTENDED" 63 | #If true then the probe hotkey must be held down to show the tooltip 64 | holdKeyToMakeVisible = false 65 | #Color of the box (0 to disable) 66 | boxFillColor = "0" 67 | #Show chest contents in detail (0 = not, 1 = always, 2 = sneak), used only if number of items is below 'showItemDetailThresshold' 68 | showChestContentsDetailed = "EXTENDED" 69 | #The scale of the tooltips, 1 is default, 2 is smaller 70 | #Range: 0.4 ~ 5.0 71 | tooltipScale = 1.2000000476837158 72 | #Show mob health (0 = not, 1 = always, 2 = sneak) 73 | showMobHealth = "NORMAL" 74 | #Show mob potion effects (0 = not, 1 = always, 2 = sneak) 75 | showMobPotionEffects = "EXTENDED" 76 | #The distance to the bottom side of the screen. Use -1 if you don't want to set this 77 | #Range: -1 ~ 10000 78 | boxBottomY = -1 79 | #Color of the border of the box (0 to disable) 80 | boxBorderColor = "0" 81 | #Show chest contents (0 = not, 1 = always, 2 = sneak) 82 | showChestContents = "EXTENDED" 83 | #Show time to adulthood for baby mobs (0 = not, 1 = always, 2 = sneak) 84 | showMobGrowth = "NORMAL" 85 | #This is a list of entities that will not be rendered by TOP. This option also works if it is set client-side alone 86 | renderBlacklist = [] 87 | 88 | [style] 89 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 90 | High = "gold" 91 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 92 | ModName = "blue,italic" 93 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 94 | Warning = "yellow" 95 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 96 | Obsolete = "gray,strikethrough" 97 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 98 | Progress = "white" 99 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 100 | Label = "gray" 101 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 102 | Error = "red,bold" 103 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 104 | InfoImportant = "blue" 105 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 106 | Info = "white" 107 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 108 | Ok = "green" 109 | #Text style. Use a comma delimited list with colors like: 'red', 'green', 'blue', ... or style codes like 'underline', 'bold', 'italic', 'strikethrough', ..." 110 | Name = "white" 111 | 112 | -------------------------------------------------------------------------------- /changelogs/modlist_1.0.5.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.0.5 2 | - [[Forge 1.16.4/5] v1.13.153](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3307825) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 3 | - [AutoRegLib-1.6-47.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/files/3128555) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 4 | - [BetterAdvancements-1.16.5-0.1.0.105](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3218942) (by [way2muchnoise](https://www.curseforge.com/members/way2muchnoise/projects)) 5 | - [buildinggadgets-1.16.5-3.8.0.jar](https://www.curseforge.com/minecraft/mc-mods/building-gadgets/files/3205295) (by [Direwolf20](https://www.curseforge.com/members/direwolf20/projects)) 6 | - [chocolate-1.3.0-1.16.4.jar](https://www.curseforge.com/minecraft/mc-mods/chocolate-fix/files/3166929) (by [AlcatrazEscapee](https://www.curseforge.com/members/alcatrazescapee/projects)) 7 | - [Chunk Pregenerator-V1.16-3.0.5](https://www.curseforge.com/minecraft/mc-mods/chunkpregenerator/files/3237965) (by [Speiger](https://www.curseforge.com/members/speiger/projects)) 8 | - [[Forge 1.16.4/5] v4.11.24](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3304791) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 9 | - [Clumps-6.0.0.22.jar](https://www.curseforge.com/minecraft/mc-mods/clumps/files/3294214) (by [Jaredlll08](https://www.curseforge.com/members/jaredlll08/projects)) 10 | - [cobblegenrandomizer-1.16-5.1.2.jar](https://www.curseforge.com/minecraft/mc-mods/cobblegenrandomizer/files/3147020) (by [HorribleNerd](https://www.curseforge.com/members/horriblenerd/projects)) 11 | - [EasyPaxelLITE(Forge1.16.4)vrs1.0.1](https://www.curseforge.com/minecraft/mc-mods/colds-easy-paxel-lite/files/3303962) (by [Coldspell_Games](https://www.curseforge.com/members/coldspell_games/projects)) 12 | - [constructionwand-1.16.5-2.2.jar](https://www.curseforge.com/minecraft/mc-mods/construction-wand/files/3285196) (by [ThetaDev](https://www.curseforge.com/members/thetadev/projects)) 13 | - [1.16.2+ (3.0.2)](https://www.curseforge.com/minecraft/mc-mods/cookiecore/files/3158118) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 14 | - [Create 1.16.4+ v0.3.1c](https://www.curseforge.com/minecraft/mc-mods/create/files/3278516) (by [simibubi](https://www.curseforge.com/members/simibubi/projects)) 15 | - [decorative_blocks-1.16.4-1.7.2.jar](https://www.curseforge.com/minecraft/mc-mods/decorative-blocks/files/3166283) (by [stohun](https://www.curseforge.com/members/stohun/projects)) 16 | - [DrawersTooltip-1.16.2-2.1.0.jar](https://www.curseforge.com/minecraft/mc-mods/drawers-tooltip/files/3035686) (by [Snownee_](https://www.curseforge.com/members/snownee_/projects)) 17 | - [dynviewdist-1.9.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/files/3217166) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 18 | - [exnihilosequentia-1.16-2.0.2.6.jar](https://www.curseforge.com/minecraft/mc-mods/ex-nihilo-sequentia/files/3294507) (by [NovaMachina](https://www.curseforge.com/members/novamachina/projects)) 19 | - [ftb-ultimine-1605.2.0-build.26-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3269868) (by [FTB](https://www.curseforge.com/members/ftb/projects)) 20 | - [FastFurnace-1.16.4-4.4.0.jar](https://www.curseforge.com/minecraft/mc-mods/fastfurnace/files/3172796) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 21 | - [FastSuite-1.16.4-1.0.1.jar](https://www.curseforge.com/minecraft/mc-mods/fastsuite/files/3295233) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 22 | - [FastWorkbench-1.16.4-4.5.1.jar](https://www.curseforge.com/minecraft/mc-mods/fastworkbench/files/3245271) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 23 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/files/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 24 | - [jei-1.16.5-7.7.0.91.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3308495) (by [mezz](https://www.curseforge.com/members/mezz/projects)) 25 | - [kubejs-1605.3.7-build.196-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3309392) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 26 | - [kubejs-create-1604.1.0.4.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-create/files/3169448) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 27 | - [ LazyDFU 0.1.3](https://www.curseforge.com/minecraft/mc-mods/lazy-dfu-forge/files/3249059) (by [Corgi_Taco](https://www.curseforge.com/members/corgi_taco/projects)) 28 | - [1.16.2 - 1.16.5 (3.2.0)](https://www.curseforge.com/minecraft/mc-mods/magic-feather/files/3224434) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 29 | - [PackMenu-1.16.4-2.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/packmenu/files/3292171) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 30 | - [Placebo-1.16.4-4.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3281276) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 31 | - [Quark-r2.4-311.jar](https://www.curseforge.com/minecraft/mc-mods/quark/files/3282239) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 32 | - [Refined Storage 1.9.12](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3196167) (by [raoulvdberge](https://www.curseforge.com/members/raoulvdberge/projects)) 33 | - [rhino-1.7.13-build.24.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3306904) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 34 | - [serverconfigupdater-1.3.jar](https://www.curseforge.com/minecraft/mc-mods/serverconfig-updater/files/3034936) (by [Darkere](https://www.curseforge.com/members/darkere/projects)) 35 | - [simplemagnets-1.1.2-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/simple-magnets/files/3239732) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 36 | - [StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3180569) (by [Texelsaur](https://www.curseforge.com/members/texelsaur/projects)) 37 | - [supermartijn642configlib-1.0.5a-mc1.16](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-config-lib/files/3226128) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 38 | - [supermartijn642corelib-1.0.3-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/3300632) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 39 | - [TheOneProbe - 1.16-3.0.8](https://www.curseforge.com/minecraft/mc-mods/the-one-probe/files/3303361) (by [McJty](https://www.curseforge.com/members/mcjty/projects)) 40 | -------------------------------------------------------------------------------- /changelogs/modlist_1.0.6.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.0.6 2 | - [[Forge 1.16.4/5] v1.15.13](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3316907) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 3 | - [AutoRegLib-1.6-47.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/files/3128555) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 4 | - [BetterAdvancements-1.16.5-0.1.0.108](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3317873) (by [way2muchnoise](https://www.curseforge.com/members/way2muchnoise/projects)) 5 | - [buildinggadgets-1.16.5-3.8.0.jar](https://www.curseforge.com/minecraft/mc-mods/building-gadgets/files/3205295) (by [Direwolf20](https://www.curseforge.com/members/direwolf20/projects)) 6 | - [chocolate-1.3.0-1.16.4.jar](https://www.curseforge.com/minecraft/mc-mods/chocolate-fix/files/3166929) (by [AlcatrazEscapee](https://www.curseforge.com/members/alcatrazescapee/projects)) 7 | - [Chunk Pregenerator-V1.16-3.0.5](https://www.curseforge.com/minecraft/mc-mods/chunkpregenerator/files/3237965) (by [Speiger](https://www.curseforge.com/members/speiger/projects)) 8 | - [[Forge 1.16.4/5] v4.11.26](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3311352) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 9 | - [Clumps-6.0.0.22.jar](https://www.curseforge.com/minecraft/mc-mods/clumps/files/3294214) (by [Jaredlll08](https://www.curseforge.com/members/jaredlll08/projects)) 10 | - [cobblegenrandomizer-1.16-5.1.2.jar](https://www.curseforge.com/minecraft/mc-mods/cobblegenrandomizer/files/3147020) (by [HorribleNerd](https://www.curseforge.com/members/horriblenerd/projects)) 11 | - [EasyPaxelLITE(Forge1.16.4)vrs1.0.3](https://www.curseforge.com/minecraft/mc-mods/colds-easy-paxel-lite/files/3318334) (by [Coldspell_Games](https://www.curseforge.com/members/coldspell_games/projects)) 12 | - [constructionwand-1.16.5-2.2.jar](https://www.curseforge.com/minecraft/mc-mods/construction-wand/files/3285196) (by [ThetaDev](https://www.curseforge.com/members/thetadev/projects)) 13 | - [1.16.2+ (3.0.2)](https://www.curseforge.com/minecraft/mc-mods/cookiecore/files/3158118) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 14 | - [Create 1.16.4+ v0.3.1c](https://www.curseforge.com/minecraft/mc-mods/create/files/3278516) (by [simibubi](https://www.curseforge.com/members/simibubi/projects)) 15 | - [decorative_blocks-1.16.4-1.7.2.jar](https://www.curseforge.com/minecraft/mc-mods/decorative-blocks/files/3166283) (by [stohun](https://www.curseforge.com/members/stohun/projects)) 16 | - [DrawersTooltip-1.16.2-2.1.0.jar](https://www.curseforge.com/minecraft/mc-mods/drawers-tooltip/files/3035686) (by [Snownee_](https://www.curseforge.com/members/snownee_/projects)) 17 | - [dynviewdist-1.9.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/files/3217166) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 18 | - [exnihilosequentia-1.16-2.0.2.6.jar](https://www.curseforge.com/minecraft/mc-mods/ex-nihilo-sequentia/files/3294507) (by [NovaMachina](https://www.curseforge.com/members/novamachina/projects)) 19 | - [ftb-ultimine-1605.2.0-build.26-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3269868) (by [FTB](https://www.curseforge.com/members/ftb/projects)) 20 | - [FastFurnace-1.16.4-4.4.0.jar](https://www.curseforge.com/minecraft/mc-mods/fastfurnace/files/3172796) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 21 | - [FastSuite-1.16.4-1.0.1.jar](https://www.curseforge.com/minecraft/mc-mods/fastsuite/files/3295233) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 22 | - [FastWorkbench-1.16.4-4.5.1.jar](https://www.curseforge.com/minecraft/mc-mods/fastworkbench/files/3245271) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 23 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/files/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 24 | - [jei-1.16.5-7.7.0.99.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3318286) (by [mezz](https://www.curseforge.com/members/mezz/projects)) 25 | - [kubejs-1605.3.8-build.198-forge.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3312706) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 26 | - [kubejs-create-1604.1.0.4.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-create/files/3169448) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 27 | - [ LazyDFU 0.1.3](https://www.curseforge.com/minecraft/mc-mods/lazy-dfu-forge/files/3249059) (by [Corgi_Taco](https://www.curseforge.com/members/corgi_taco/projects)) 28 | - [1.16.2 - 1.16.5 (3.2.0)](https://www.curseforge.com/minecraft/mc-mods/magic-feather/files/3224434) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 29 | - [[1.16.5] MoreOverlays 1.18.13](https://www.curseforge.com/minecraft/mc-mods/more-overlays-updated/files/3172013) (by [RiDGo8](https://www.curseforge.com/members/ridgo8/projects)) 30 | - [PackMenu-1.16.4-2.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/packmenu/files/3292171) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 31 | - [Placebo-1.16.4-4.4.5.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3314315) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 32 | - [Quark-r2.4-311.jar](https://www.curseforge.com/minecraft/mc-mods/quark/files/3282239) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 33 | - [Refined Storage 1.9.12](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3196167) (by [raoulvdberge](https://www.curseforge.com/members/raoulvdberge/projects)) 34 | - [rhino-1.7.13-build.24.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3306904) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 35 | - [serverconfigupdater-1.3.jar](https://www.curseforge.com/minecraft/mc-mods/serverconfig-updater/files/3034936) (by [Darkere](https://www.curseforge.com/members/darkere/projects)) 36 | - [simplemagnets-1.1.2-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/simple-magnets/files/3239732) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 37 | - [simplybackpacks-1.16.3-1.4.13.jar](https://www.curseforge.com/minecraft/mc-mods/simply-backpacks/files/3076926) (by [Flanks255](https://www.curseforge.com/members/flanks255/projects)) 38 | - [StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3180569) (by [Texelsaur](https://www.curseforge.com/members/texelsaur/projects)) 39 | - [supermartijn642configlib-1.0.6-mc1.16](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-config-lib/files/3312641) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 40 | - [supermartijn642corelib-1.0.3-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/3300632) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 41 | - [TheOneProbe - 1.16-3.1.3](https://www.curseforge.com/minecraft/mc-mods/the-one-probe/files/3312816) (by [McJty](https://www.curseforge.com/members/mcjty/projects)) 42 | -------------------------------------------------------------------------------- /changelogs/modlist_1.0.9.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.0.9 2 | - [AppleSkin-mc1.16.2-forge-1.0.14.jar](https://www.curseforge.com/minecraft/mc-mods/appleskin/files/3035787) (by [squeek502](https://www.curseforge.com/members/squeek502/projects)) 3 | - [[Forge 1.16.4/5] v1.17.20](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3330633) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 4 | - [AutoRegLib-1.6-49.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/files/3326041) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 5 | - [BetterAdvancements-1.16.5-0.1.0.108](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3317873) (by [way2muchnoise](https://www.curseforge.com/members/way2muchnoise/projects)) 6 | - [buildinggadgets-1.16.5-3.8.0.jar](https://www.curseforge.com/minecraft/mc-mods/building-gadgets/files/3205295) (by [Direwolf20](https://www.curseforge.com/members/direwolf20/projects)) 7 | - [chocolate-1.3.0-1.16.4.jar](https://www.curseforge.com/minecraft/mc-mods/chocolate-fix/files/3166929) (by [AlcatrazEscapee](https://www.curseforge.com/members/alcatrazescapee/projects)) 8 | - [Chunk Pregenerator-V1.16-3.0.5](https://www.curseforge.com/minecraft/mc-mods/chunkpregenerator/files/3237965) (by [Speiger](https://www.curseforge.com/members/speiger/projects)) 9 | - [[Forge 1.16.4/5] v4.11.26](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3311352) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 10 | - [Clumps-6.0.0.24.jar](https://www.curseforge.com/minecraft/mc-mods/clumps/files/3325374) (by [Jaredlll08](https://www.curseforge.com/members/jaredlll08/projects)) 11 | - [cobblegenrandomizer-1.16-5.1.2.jar](https://www.curseforge.com/minecraft/mc-mods/cobblegenrandomizer/files/3147020) (by [HorribleNerd](https://www.curseforge.com/members/horriblenerd/projects)) 12 | - [EasyPaxelLITE(Forge1.16.4)vrs1.0.3](https://www.curseforge.com/minecraft/mc-mods/colds-easy-paxel-lite/files/3318334) (by [Coldspell_Games](https://www.curseforge.com/members/coldspell_games/projects)) 13 | - [constructionwand-1.16.5-2.2.jar](https://www.curseforge.com/minecraft/mc-mods/construction-wand/files/3285196) (by [ThetaDev](https://www.curseforge.com/members/thetadev/projects)) 14 | - [1.16.2+ (3.0.2)](https://www.curseforge.com/minecraft/mc-mods/cookiecore/files/3158118) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 15 | - [Create 1.16.4+ v0.3.1c](https://www.curseforge.com/minecraft/mc-mods/create/files/3278516) (by [simibubi](https://www.curseforge.com/members/simibubi/projects)) 16 | - [decorative_blocks-1.16.4-1.7.2.jar](https://www.curseforge.com/minecraft/mc-mods/decorative-blocks/files/3166283) (by [stohun](https://www.curseforge.com/members/stohun/projects)) 17 | - [DrawersTooltip-1.16.2-2.1.0.jar](https://www.curseforge.com/minecraft/mc-mods/drawers-tooltip/files/3035686) (by [Snownee_](https://www.curseforge.com/members/snownee_/projects)) 18 | - [dynviewdist-1.9.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/files/3217166) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 19 | - [exnihilosequentia-1.16-2.0.2.6.jar](https://www.curseforge.com/minecraft/mc-mods/ex-nihilo-sequentia/files/3294507) (by [NovaMachina](https://www.curseforge.com/members/novamachina/projects)) 20 | - [ftb-ultimine-forge-1605.2.2-build.4.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3337104) (by [FTB](https://www.curseforge.com/members/ftb/projects)) 21 | - [FastFurnace-1.16.4-4.4.0.jar](https://www.curseforge.com/minecraft/mc-mods/fastfurnace/files/3172796) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 22 | - [FastWorkbench-1.16.4-4.5.1.jar](https://www.curseforge.com/minecraft/mc-mods/fastworkbench/files/3245271) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 23 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/files/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 24 | - [jei-1.16.5-7.7.0.104.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3338427) (by [mezz](https://www.curseforge.com/members/mezz/projects)) 25 | - [kubejs-forge-1605.3.10-build.18.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3337078) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 26 | - [kubejs-create-1604.1.0.4.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-create/files/3169448) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 27 | - [ LazyDFU 0.1.3](https://www.curseforge.com/minecraft/mc-mods/lazy-dfu-forge/files/3249059) (by [Corgi_Taco](https://www.curseforge.com/members/corgi_taco/projects)) 28 | - [1.16.2 - 1.16.5 (3.2.0)](https://www.curseforge.com/minecraft/mc-mods/magic-feather/files/3224434) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 29 | - [[1.16.5] MoreOverlays 1.18.13](https://www.curseforge.com/minecraft/mc-mods/more-overlays-updated/files/3172013) (by [RiDGo8](https://www.curseforge.com/members/ridgo8/projects)) 30 | - [PackMenu-1.16.4-2.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/packmenu/files/3292171) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 31 | - [Placebo-1.16.4-4.5.0.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3331459) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 32 | - [Quark-r2.4-312.jar](https://www.curseforge.com/minecraft/mc-mods/quark/files/3326040) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 33 | - [Refined Storage 1.9.12](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3196167) (by [raoulvdberge](https://www.curseforge.com/members/raoulvdberge/projects)) 34 | - [rhino-1605.1.0-build.4.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3319221) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 35 | - [serverconfigupdater-1.3.jar](https://www.curseforge.com/minecraft/mc-mods/serverconfig-updater/files/3034936) (by [Darkere](https://www.curseforge.com/members/darkere/projects)) 36 | - [simplemagnets-1.1.2-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/simple-magnets/files/3239732) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 37 | - [simplybackpacks-1.16.3-1.4.13.jar](https://www.curseforge.com/minecraft/mc-mods/simply-backpacks/files/3076926) (by [Flanks255](https://www.curseforge.com/members/flanks255/projects)) 38 | - [StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3180569) (by [Texelsaur](https://www.curseforge.com/members/texelsaur/projects)) 39 | - [supermartijn642configlib-1.0.6-mc1.16](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-config-lib/files/3312641) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 40 | - [supermartijn642corelib-1.0.5-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/3336261) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 41 | - [TheOneProbe - 1.16-3.1.4](https://www.curseforge.com/minecraft/mc-mods/the-one-probe/files/3319255) (by [McJty](https://www.curseforge.com/members/mcjty/projects)) 42 | -------------------------------------------------------------------------------- /changelogs/modlist_1.1.0.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.1.0 2 | - [appleskin-forge-mc1.16.x-2.0.0.jar](https://www.curseforge.com/minecraft/mc-mods/appleskin/files/3358019) (by [squeek502](https://www.curseforge.com/members/squeek502/projects)) 3 | - [[Forge 1.16.4/5] v1.19.27](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3375943) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 4 | - [AutoRegLib-1.6-49.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/files/3326041) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 5 | - [BetterAdvancements-1.16.5-0.1.1.109](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3364386) (by [way2muchnoise](https://www.curseforge.com/members/way2muchnoise/projects)) 6 | - [buildinggadgets-1.16.5-3.8.0.jar](https://www.curseforge.com/minecraft/mc-mods/building-gadgets/files/3205295) (by [Direwolf20](https://www.curseforge.com/members/direwolf20/projects)) 7 | - [chocolate-1.3.0-1.16.4.jar](https://www.curseforge.com/minecraft/mc-mods/chocolate-fix/files/3166929) (by [AlcatrazEscapee](https://www.curseforge.com/members/alcatrazescapee/projects)) 8 | - [Chunk Pregenerator-V1.16-3.0.5](https://www.curseforge.com/minecraft/mc-mods/chunkpregenerator/files/3237965) (by [Speiger](https://www.curseforge.com/members/speiger/projects)) 9 | - [[Forge 1.16.4/5] v4.11.26](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3311352) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 10 | - [Clumps-6.0.0.25.jar](https://www.curseforge.com/minecraft/mc-mods/clumps/files/3348509) (by [Jaredlll08](https://www.curseforge.com/members/jaredlll08/projects)) 11 | - [cobblegenrandomizer-1.16-5.1.2.jar](https://www.curseforge.com/minecraft/mc-mods/cobblegenrandomizer/files/3147020) (by [HorribleNerd](https://www.curseforge.com/members/horriblenerd/projects)) 12 | - [EasyPaxelLITE(Forge1.16.4)vrs1.0.6](https://www.curseforge.com/minecraft/mc-mods/colds-easy-paxel-lite/files/3368153) (by [Coldspell_Games](https://www.curseforge.com/members/coldspell_games/projects)) 13 | - [constructionwand-1.16.5-2.2.jar](https://www.curseforge.com/minecraft/mc-mods/construction-wand/files/3285196) (by [ThetaDev](https://www.curseforge.com/members/thetadev/projects)) 14 | - [1.16.2+ (3.0.2)](https://www.curseforge.com/minecraft/mc-mods/cookiecore/files/3158118) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 15 | - [Create 1.16.4+ v0.3.1c](https://www.curseforge.com/minecraft/mc-mods/create/files/3278516) (by [simibubi](https://www.curseforge.com/members/simibubi/projects)) 16 | - [decorative_blocks-1.16.4-1.7.2.jar](https://www.curseforge.com/minecraft/mc-mods/decorative-blocks/files/3166283) (by [stohun](https://www.curseforge.com/members/stohun/projects)) 17 | - [DrawersTooltip-1.16.2-2.1.0.jar](https://www.curseforge.com/minecraft/mc-mods/drawers-tooltip/files/3035686) (by [Snownee_](https://www.curseforge.com/members/snownee_/projects)) 18 | - [dynviewdist-2.0.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/files/3358883) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 19 | - [ftb-ultimine-forge-1605.2.2-build.4.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3337104) (by [FTB](https://www.curseforge.com/members/ftb/projects)) 20 | - [FastFurnace-1.16.4-4.4.0.jar](https://www.curseforge.com/minecraft/mc-mods/fastfurnace/files/3172796) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 21 | - [FastWorkbench-1.16.4-4.5.1.jar](https://www.curseforge.com/minecraft/mc-mods/fastworkbench/files/3245271) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 22 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/files/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 23 | - [invtweaks-1.16.4-1.0.1.jar](https://www.curseforge.com/minecraft/mc-mods/inventory-tweaks-renewed/files/3102237) (by [David1544](https://www.curseforge.com/members/david1544/projects)) 24 | - [jei-1.16.5-7.7.0.107.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3373521) (by [mezz](https://www.curseforge.com/members/mezz/projects)) 25 | - [kubejs-forge-1605.3.11-build.31.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3364266) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 26 | - [kubejs-create-1604.1.0.4.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-create/files/3169448) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 27 | - [ LazyDFU 0.1.3](https://www.curseforge.com/minecraft/mc-mods/lazy-dfu-forge/files/3249059) (by [Corgi_Taco](https://www.curseforge.com/members/corgi_taco/projects)) 28 | - [1.16.2 - 1.16.5 (3.2.0)](https://www.curseforge.com/minecraft/mc-mods/magic-feather/files/3224434) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 29 | - [[1.16.2+] Mouse Tweaks 2.14](https://www.curseforge.com/minecraft/mc-mods/mouse-tweaks/files/3202662) (by [YaLTeR](https://www.curseforge.com/members/yalter/projects)) 30 | - [PackMenu-1.16.4-2.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/packmenu/files/3292171) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 31 | - [Placebo-1.16.4-4.5.0.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3331459) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 32 | - [Quark-r2.4-314.jar](https://www.curseforge.com/minecraft/mc-mods/quark/files/3366626) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 33 | - [RandomPatches 2.4.4-forge](https://www.curseforge.com/minecraft/mc-mods/randompatches-forge/files/3211323) (by [TheRandomLabs](https://www.curseforge.com/members/therandomlabs/projects)) 34 | - [Refined Storage 1.9.13](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3351933) (by [raoulvdberge](https://www.curseforge.com/members/raoulvdberge/projects)) 35 | - [rhino-1605.1.1-build.21.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3354586) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 36 | - [serverconfigupdater-1.3.jar](https://www.curseforge.com/minecraft/mc-mods/serverconfig-updater/files/3034936) (by [Darkere](https://www.curseforge.com/members/darkere/projects)) 37 | - [simplemagnets-1.1.2-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/simple-magnets/files/3239732) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 38 | - [simplybackpacks-1.16.5-1.5.1-build.4.jar](https://www.curseforge.com/minecraft/mc-mods/simply-backpacks/files/3345102) (by [Flanks255](https://www.curseforge.com/members/flanks255/projects)) 39 | - [StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3180569) (by [Texelsaur](https://www.curseforge.com/members/texelsaur/projects)) 40 | - [supermartijn642configlib-1.0.8-mc1.16](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-config-lib/files/3357667) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 41 | - [supermartijn642corelib-1.0.9-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/3357863) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 42 | - [TheOneProbe - 1.16-3.1.4](https://www.curseforge.com/minecraft/mc-mods/the-one-probe/files/3319255) (by [McJty](https://www.curseforge.com/members/mcjty/projects)) 43 | -------------------------------------------------------------------------------- /changelogs/modlist_1.0.8.md: -------------------------------------------------------------------------------- 1 | ## CreateTogether - 1.0.8 2 | - [AppleSkin-mc1.16.2-forge-1.0.14.jar](https://www.curseforge.com/minecraft/mc-mods/appleskin/files/3035787) (by [squeek502](https://www.curseforge.com/members/squeek502/projects)) 3 | - [[Forge 1.16.4/5] v1.17.20](https://www.curseforge.com/minecraft/mc-mods/architectury-forge/files/3330633) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 4 | - [AutoRegLib-1.6-49.jar](https://www.curseforge.com/minecraft/mc-mods/autoreglib/files/3326041) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 5 | - [BetterAdvancements-1.16.5-0.1.0.108](https://www.curseforge.com/minecraft/mc-mods/better-advancements/files/3317873) (by [way2muchnoise](https://www.curseforge.com/members/way2muchnoise/projects)) 6 | - [buildinggadgets-1.16.5-3.8.0.jar](https://www.curseforge.com/minecraft/mc-mods/building-gadgets/files/3205295) (by [Direwolf20](https://www.curseforge.com/members/direwolf20/projects)) 7 | - [chocolate-1.3.0-1.16.4.jar](https://www.curseforge.com/minecraft/mc-mods/chocolate-fix/files/3166929) (by [AlcatrazEscapee](https://www.curseforge.com/members/alcatrazescapee/projects)) 8 | - [Chunk Pregenerator-V1.16-3.0.5](https://www.curseforge.com/minecraft/mc-mods/chunkpregenerator/files/3237965) (by [Speiger](https://www.curseforge.com/members/speiger/projects)) 9 | - [[Forge 1.16.4/5] v4.11.26](https://www.curseforge.com/minecraft/mc-mods/cloth-config-forge/files/3311352) (by [shedaniel](https://www.curseforge.com/members/shedaniel/projects)) 10 | - [Clumps-6.0.0.24.jar](https://www.curseforge.com/minecraft/mc-mods/clumps/files/3325374) (by [Jaredlll08](https://www.curseforge.com/members/jaredlll08/projects)) 11 | - [cobblegenrandomizer-1.16-5.1.2.jar](https://www.curseforge.com/minecraft/mc-mods/cobblegenrandomizer/files/3147020) (by [HorribleNerd](https://www.curseforge.com/members/horriblenerd/projects)) 12 | - [EasyPaxelLITE(Forge1.16.4)vrs1.0.3](https://www.curseforge.com/minecraft/mc-mods/colds-easy-paxel-lite/files/3318334) (by [Coldspell_Games](https://www.curseforge.com/members/coldspell_games/projects)) 13 | - [constructionwand-1.16.5-2.2.jar](https://www.curseforge.com/minecraft/mc-mods/construction-wand/files/3285196) (by [ThetaDev](https://www.curseforge.com/members/thetadev/projects)) 14 | - [1.16.2+ (3.0.2)](https://www.curseforge.com/minecraft/mc-mods/cookiecore/files/3158118) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 15 | - [Create 1.16.4+ v0.3.1c](https://www.curseforge.com/minecraft/mc-mods/create/files/3278516) (by [simibubi](https://www.curseforge.com/members/simibubi/projects)) 16 | - [decorative_blocks-1.16.4-1.7.2.jar](https://www.curseforge.com/minecraft/mc-mods/decorative-blocks/files/3166283) (by [stohun](https://www.curseforge.com/members/stohun/projects)) 17 | - [DrawersTooltip-1.16.2-2.1.0.jar](https://www.curseforge.com/minecraft/mc-mods/drawers-tooltip/files/3035686) (by [Snownee_](https://www.curseforge.com/members/snownee_/projects)) 18 | - [dynviewdist-1.9.jar](https://www.curseforge.com/minecraft/mc-mods/dynamic-view/files/3217166) (by [someaddon](https://www.curseforge.com/members/someaddon/projects)) 19 | - [exnihilosequentia-1.16-2.0.2.6.jar](https://www.curseforge.com/minecraft/mc-mods/ex-nihilo-sequentia/files/3294507) (by [NovaMachina](https://www.curseforge.com/members/novamachina/projects)) 20 | - [ftb-ultimine-1605.2.0-build.26-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ftb-ultimine-forge/files/3269868) (by [FTB](https://www.curseforge.com/members/ftb/projects)) 21 | - [FastFurnace-1.16.4-4.4.0.jar](https://www.curseforge.com/minecraft/mc-mods/fastfurnace/files/3172796) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 22 | - [FastSuite-1.16.4-1.0.2.jar](https://www.curseforge.com/minecraft/mc-mods/fastsuite/files/3323552) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 23 | - [FastWorkbench-1.16.4-4.5.1.jar](https://www.curseforge.com/minecraft/mc-mods/fastworkbench/files/3245271) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 24 | - [ferritecore-2.0.4-forge.jar](https://www.curseforge.com/minecraft/mc-mods/ferritecore/files/3272785) (by [malte0811](https://www.curseforge.com/members/malte0811/projects)) 25 | - [jei-1.16.5-7.7.0.103.jar](https://www.curseforge.com/minecraft/mc-mods/jei/files/3335737) (by [mezz](https://www.curseforge.com/members/mezz/projects)) 26 | - [kubejs-forge-1605.3.10-build.16.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-forge/files/3334911) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 27 | - [kubejs-create-1604.1.0.4.jar](https://www.curseforge.com/minecraft/mc-mods/kubejs-create/files/3169448) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 28 | - [ LazyDFU 0.1.3](https://www.curseforge.com/minecraft/mc-mods/lazy-dfu-forge/files/3249059) (by [Corgi_Taco](https://www.curseforge.com/members/corgi_taco/projects)) 29 | - [1.16.2 - 1.16.5 (3.2.0)](https://www.curseforge.com/minecraft/mc-mods/magic-feather/files/3224434) (by [Ephys](https://www.curseforge.com/members/ephys/projects)) 30 | - [[1.16.5] MoreOverlays 1.18.13](https://www.curseforge.com/minecraft/mc-mods/more-overlays-updated/files/3172013) (by [RiDGo8](https://www.curseforge.com/members/ridgo8/projects)) 31 | - [PackMenu-1.16.4-2.4.2.jar](https://www.curseforge.com/minecraft/mc-mods/packmenu/files/3292171) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 32 | - [Placebo-1.16.4-4.5.0.jar](https://www.curseforge.com/minecraft/mc-mods/placebo/files/3331459) (by [Shadows_of_Fire](https://www.curseforge.com/members/shadows_of_fire/projects)) 33 | - [Quark-r2.4-312.jar](https://www.curseforge.com/minecraft/mc-mods/quark/files/3326040) (by [Vazkii](https://www.curseforge.com/members/vazkii/projects)) 34 | - [Refined Storage 1.9.12](https://www.curseforge.com/minecraft/mc-mods/refined-storage/files/3196167) (by [raoulvdberge](https://www.curseforge.com/members/raoulvdberge/projects)) 35 | - [rhino-1605.1.0-build.4.jar](https://www.curseforge.com/minecraft/mc-mods/rhino/files/3319221) (by [LatvianModder](https://www.curseforge.com/members/latvianmodder/projects)) 36 | - [serverconfigupdater-1.3.jar](https://www.curseforge.com/minecraft/mc-mods/serverconfig-updater/files/3034936) (by [Darkere](https://www.curseforge.com/members/darkere/projects)) 37 | - [simplemagnets-1.1.2-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/simple-magnets/files/3239732) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 38 | - [simplybackpacks-1.16.3-1.4.13.jar](https://www.curseforge.com/minecraft/mc-mods/simply-backpacks/files/3076926) (by [Flanks255](https://www.curseforge.com/members/flanks255/projects)) 39 | - [StorageDrawers-1.16.3-8.2.2.jar](https://www.curseforge.com/minecraft/mc-mods/storage-drawers/files/3180569) (by [Texelsaur](https://www.curseforge.com/members/texelsaur/projects)) 40 | - [supermartijn642configlib-1.0.6-mc1.16](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-config-lib/files/3312641) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 41 | - [supermartijn642corelib-1.0.4-mc1.16.5](https://www.curseforge.com/minecraft/mc-mods/supermartijn642s-core-lib/files/3328612) (by [SuperMartijn642](https://www.curseforge.com/members/supermartijn642/projects)) 42 | - [TheOneProbe - 1.16-3.1.4](https://www.curseforge.com/minecraft/mc-mods/the-one-probe/files/3319255) (by [McJty](https://www.curseforge.com/members/mcjty/projects)) 43 | --------------------------------------------------------------------------------