← Назад к ресурсам

Minecraft Extended 2

An extended version of the game. More dimensions and more things to do without feeling too different from vanilla

Modrinth adventure combat multiplayer

Описание

# Minecraft Extended The goal of this modpack is to add more things to do without feeling too disconnected from the vanilla experience. There are more potions, more enchantments, air ships, big boats, and 2 more dimensions to explore. For a list of mods click [this link](https://modrinth.com/modpack/minecraft-extended-2/version/latest) and look at the dependencies. # Gameplay Changes Inventory management ## Shulkers - Use them as a backpack ![Back shulker](https://i.imgur.com/0bUkfBr.jpg) - Access the inventory without placing them ![shulker pouch](https://i.imgur.com/EqY6Qd9.jpg) ## Potions - Hold more of them ![potion bag](https://i.imgur.com/2p32VrM.jpg) ## Chests - Get a preview of whats inside ![chest preview](https://i.imgur.com/B3GaojC.jpg) - Gain access to more chests at once with clickable tabs ![inventory tabs](https://i.imgur.com/FQSLek3.jpg) New Dimensions - Deeper Darker ![Deeper Darker](https://i.imgur.com/JnofZhL.jpg) - The Bublezone ![Bumblezone](https://i.imgur.com/BodaG8J.jpg) # How to use this modpack Client ## First Time Check out [this guide](https://docs.modrinth.com/docs/modpacks/playing_modpacks/#how-do-i-play-a-modpack) from modrinth for downloading and installing. ## Updating on Prism Launcher With the modpack selected click the edit button ![edit](https://i.imgur.com/crmSSD8.jpg) In the window that opens click the modrinth tab ![modrinth](https://i.imgur.com/fKpqGu9.jpg) In that tab select the desired version and click update. Make sure to check the changelog for any warnings I have about updating existing worlds! ![update](https://i.imgur.com/CUlZIot.jpg) Hosting a Server Before you continue with server installation this method requires [Docker](https://www.docker.com/) or [Podman](https://podman-desktop.io/) I may write a script that doesn't involve containers in the future. You can run it using `docker run -dit -v /path/for/world:/Minecraft/server/world -p 25565:25565 ghcr.io/nathan-r-wood/minecraft-extended-2:latest` The default ram ussage of the server is set to 4G if you want to change the amount of ram the server can use add `-e RAM=5G` or `-e RAM=3000M` to the docker run command so it looks something like this `docker run -dit -v /path/for/world:/Minecraft/server/world -e RAM=5G -p 25565:25565 ghcr.io/nathan-r-wood/minecraft-extended-2:latest` If you want consistent ops or server properties you'll have to add a ops.json file or a server.properties file on the host somewhere and link the to the container with a start command that looks something like this `docker run -dit -v /path/for/world:/Minecraft/server/world -v /path/for/ops.json:/Minecraft/server/ops.json -p 25565:25565 ghcr.io/nathan-r-wood/minecraft-extended-2:latest` Good luck have fun and hopefully these instructions are good enough.