[{"data":1,"prerenderedAt":414},["ShallowReactive",2],{"header-games":3,"article-how-to-set-up-simple-voice-chat-on-your-minecraft-server-en":51,"help-game-articles-minecraft-en":72,"game-info-article-minecraft":400,"i-heroicons:chevron-right-20-solid":402,"i-heroicons:user-circle-20-solid":406,"i-heroicons:clock-20-solid":408,"i-heroicons:calendar-days-20-solid":410,"i-heroicons:pencil-square-20-solid":412},{"total":4,"featured":5},22,[6,13,19,24,29,35,40,45],{"slug":7,"name":8,"icon":9,"hasIcon":10,"basePrice":11,"link":12},"minecraft","Minecraft","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fminecraft.png",true,1,"\u002Fminecraft-server-hosting",{"slug":14,"name":15,"icon":16,"hasIcon":10,"basePrice":17,"link":18},"hytale","Hytale","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fhytale.png",6,"\u002Fhytale-server-hosting",{"slug":20,"name":21,"icon":22,"hasIcon":10,"basePrice":17,"link":23},"palworld","Palworld","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fpalworld.png","\u002Fpalworld-server-hosting",{"slug":25,"name":26,"icon":27,"hasIcon":10,"basePrice":17,"link":28},"rust","Rust","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Frust.png","\u002Frust-server-hosting",{"slug":30,"name":31,"icon":32,"hasIcon":10,"basePrice":33,"link":34},"valheim","Valheim","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fvalheim.png",5,"\u002Fvalheim-server-hosting",{"slug":36,"name":37,"icon":38,"hasIcon":10,"basePrice":17,"link":39},"satisfactory","Satisfactory","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fsatisfactory.png","\u002Fsatisfactory-server-hosting",{"slug":41,"name":42,"icon":43,"hasIcon":10,"basePrice":17,"link":44},"enshrouded","Enshrouded","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fenshrouded.png","\u002Fenshrouded-server-hosting",{"slug":46,"name":47,"icon":48,"hasIcon":10,"basePrice":49,"link":50},"terraria","Terraria","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fterraria.png",4,"\u002Fterraria-server-hosting",{"id":52,"game_slug":7,"category":53,"title":54,"description":55,"content":56,"keywords":57,"author_name":58,"author_role":59,"is_featured":60,"is_published":10,"published_at":61,"created_at":62,"updated_at":62,"slug":63,"allSlugs":64,"author":69,"date":61,"lastUpdated":61,"game":70,"readingTime":71},"d0dbe651-46f9-4b4c-8770-ec900bd8191e","Mods & Plugins","How to Set Up Simple Voice Chat on Your Minecraft Server","Fix Simple Voice Chat by allocating a dedicated port in the DoomHosting panel and updating voicechat-server.properties — step-by-step guide.","## Overview\n\nSimple Voice Chat is a popular Minecraft mod that lets players talk to each other using proximity voice chat. Unlike most mods, it opens its **own UDP socket** on a separate port — independent of Minecraft's main TCP connection.\n\nOn DoomHosting (powered by Pterodactyl), every port must be explicitly allocated before it can be used. Until you create an allocation for Simple Voice Chat and point the mod at it, players will connect to the game just fine but voice will silently fail to establish.\n\nThis guide walks you through allocating a dedicated port and configuring the mod to use it.\n\n---\n\n## Why a Separate Port Is Needed\n\nMinecraft runs on one port (typically 25565). Simple Voice Chat opens a second socket — by default on port 24454 — just for audio data. On a managed hosting panel like DoomHosting, only ports you have explicitly allocated are reachable from the internet.\n\nIf you skip this step, the mod loads without errors but players can never hear each other, because the voice chat socket has no open port to bind to.\n\n---\n\n## Step 1 — Start Your Server Once (to generate config files)\n\nSimple Voice Chat creates its configuration file the first time the server starts. If you haven't started the server with the mod installed yet:\n\n1. Add the Simple Voice Chat server mod (`.jar`) to your `\u002Fmods` folder.\n2. **Start** your server and wait for it to fully load.\n3. **Stop** the server again.\n\nThis generates the file `\u002Fconfig\u002Fvoicechat\u002Fvoicechat-server.properties`.\n\n---\n\n## Step 2 — Create a Port Allocation in the Panel\n\n1. Log in to **[panel.doomhosting.com](https:\u002F\u002Fpanel.doomhosting.com)** and open your server.\n2. Click the **Network** tab in the top navigation.\n3. Click the blue **Create Allocation** button on the right side of the page.\n4. A new port will appear in the list. **Copy that port number** — you'll need it in the next step.\n\n> **Tip:** The panel assigns the next available port automatically. Note it down before navigating away.\n\n---\n\n## Step 3 — Configure the Voice Chat Port\n\n1. Go back to the **Files** tab in the panel.\n2. Navigate to `\u002Fconfig\u002Fvoicechat\u002F`\n3. Open **`voicechat-server.properties`** for editing.\n4. Find the `port=` line and replace the value with the port you just copied:\n\n```properties\n# Voice chat server port\nport=YOUR_NEW_PORT_HERE\n\n# The IP address the voice chat server should bind to\nbind_address=0.0.0.0\n```\n\n5. **Save** the file.\n\n---\n\n## Step 4 — Start Your Server\n\nStart your server. Simple Voice Chat will now bind to your allocated port, and players will be able to connect automatically when they join using the matching client mod.\n\n---\n\n## Troubleshooting\n\n**Players can connect to the server but voice still doesn't work**\nDouble-check that the port in `voicechat-server.properties` exactly matches the allocated port shown in the Network tab. A single digit off means no voice.\n\n**The `\u002Fconfig\u002Fvoicechat\u002F` folder doesn't exist**\nThe mod hasn't generated its config yet. Make sure the Simple Voice Chat **server** mod (not just the client mod) is in your `\u002Fmods` folder, then start and stop the server once.\n\n**I created an allocation but it disappeared**\nAllocations are permanent unless manually deleted. Refresh the Network tab and look through the full list — it may be further down the page.\n\n**Voice chat works but only at close range**\nThat's expected behaviour — Simple Voice Chat uses proximity audio by default. You can adjust the range in `voicechat-server.properties` using the `voice_chat_distance` and `max_voice_chat_distance` options.","simple voice chat, minecraft voice chat mod, voicechat server port, pterodactyl port allocation, doomhosting minecraft, voice chat not working, voicechat-server.properties","DoomHosting Support","Support Team",false,"2026-04-22T12:54:47.395+00:00","2026-04-22T12:54:47.089994+00:00","how-to-set-up-simple-voice-chat-on-your-minecraft-server",{"da":65,"de":66,"en":63,"pl":67,"sv":68},"sadan-opstter-du-simple-voice-chat-pa-din-minecraft-server","wie-man-simple-voice-chat-auf-einem-minecraft-server-einrichtet","jak-skonfigurowac-simple-voice-chat-na-serwerze-minecraft","hur-man-staller-in-simple-voice-chat-pa-en-minecraft-server",{"name":58,"role":59},{"slug":7,"name":8},3,[73,88,102,114,126,140,153,165,177,189,193,207,220,233,246,259,272,285,298,311,324,337,350,362,375,388],{"id":74,"slug":75,"game_slug":7,"title":76,"description":77,"category":78,"is_featured":10,"published_at":79,"content":80,"keywords":80,"allSlugs":81,"author":86,"date":79,"lastUpdated":79,"game":87},"03d39bf3-7d8b-417f-a225-ebe5a264b29c","configuring-spawn-protection-minecraft-server","Configuring Spawn Protection on Your Minecraft Server","Learn how to set up and customize spawn protection on your Minecraft server to prevent griefing and protect your spawn area from unauthorized modifications.","Server Administration","2025-01-25T00:00:00+00:00",null,{"da":82,"de":83,"en":75,"pl":84,"sv":85},"konfigurer-spawn-beskyttelse-minecraft-server","spawn-schutz-konfigurieren-minecraft-server","konfiguracja-ochrony-spawnu-minecraft-serwer","konfigurera-spawn-skydd-minecraft-server",{},{"slug":7,"name":8},{"id":89,"slug":90,"game_slug":7,"title":91,"description":92,"category":93,"is_featured":10,"published_at":94,"content":80,"keywords":80,"allSlugs":95,"author":100,"date":94,"lastUpdated":94,"game":101},"dca8c72f-93e1-4229-aff3-d1d2c146ecae","how-to-accept-minecraft-server-eula","How to Accept the Minecraft Server EULA (End User License Agreement)","Learn how to properly accept the Minecraft EULA for your server, understand what it means, and get your server running quickly and legally.","Server Setup","2024-03-19T00:00:00+00:00",{"da":96,"de":97,"en":90,"pl":98,"sv":99},"accepter-minecraft-server-eula","minecraft-server-eula-akzeptieren","jak-zaakceptowac-eula-minecraft-serwera","acceptera-minecraft-server-eula",{},{"slug":7,"name":8},{"id":103,"slug":104,"game_slug":7,"title":105,"description":106,"category":78,"is_featured":10,"published_at":94,"content":80,"keywords":80,"allSlugs":107,"author":112,"date":94,"lastUpdated":94,"game":113},"774c48ba-b569-483c-85c3-b97be4de0b71","how-to-enable-keep-inventory-minecraft","How to Enable Keep Inventory in Minecraft (Never Lose Items Again)","Learn how to enable keep inventory in Minecraft to prevent losing items on death. Simple guide for Overworld, Nether, and The End dimensions.",{"da":108,"de":109,"en":104,"pl":110,"sv":111},"aktiver-behold-inventar-minecraft","keep-inventory-aktivieren-minecraft","jak-wlaczyc-keep-inventory-minecraft","aktivera-behall-inventarium-minecraft",{},{"slug":7,"name":8},{"id":115,"slug":116,"game_slug":7,"title":117,"description":118,"category":78,"is_featured":10,"published_at":94,"content":80,"keywords":80,"allSlugs":119,"author":124,"date":94,"lastUpdated":94,"game":125},"e8cc7d83-4216-4344-b52c-0e62e3ba90ae","setting-up-whitelist-on-minecraft-server","Setting Up a Whitelist on Your Minecraft Server","Learn how to enable and manage whitelisting on your Minecraft server to control who can join and play on your server.",{"da":120,"de":121,"en":116,"pl":122,"sv":123},"opsaet-whitelist-paa-minecraft-server","whitelist-einrichten-minecraft-server","konfiguracja-whitelisty-minecraft-serwer","konfigurera-whitelist-minecraft-server",{},{"slug":7,"name":8},{"id":127,"slug":128,"game_slug":7,"title":129,"description":130,"category":131,"is_featured":10,"published_at":132,"content":80,"keywords":80,"allSlugs":133,"author":138,"date":132,"lastUpdated":132,"game":139},"56ff059c-f31b-46f9-92fc-a1cefd2274c6","change-minecraft-server-icon","How to Change Your Minecraft Server Icon","Step-by-step guide on customizing your Minecraft server icon, including image requirements, file preparation, and upload instructions for the perfect server list appearance","Server Customization","2024-01-13T00:00:00+00:00",{"da":134,"de":135,"en":128,"pl":136,"sv":137},"skift-minecraft-server-ikon","minecraft-server-icon-aendern","zmiana-ikony-minecraft-serwera","andra-minecraft-server-ikon",{},{"slug":7,"name":8},{"id":141,"slug":142,"game_slug":7,"title":143,"description":144,"category":78,"is_featured":10,"published_at":145,"content":80,"keywords":80,"allSlugs":146,"author":151,"date":145,"lastUpdated":145,"game":152},"7a9bac5b-c85e-425c-a83f-a982ffd723d5","find-and-share-your-minecraft-server-logs","Find and Share Your Minecraft Server Logs","Learn how to locate and share your Minecraft server logs to help with troubleshooting.","2024-01-08T00:00:00+00:00",{"da":147,"de":148,"en":142,"pl":149,"sv":150},"find-og-del-minecraft-server-logs","minecraft-server-logs-finden-und-teilen","znajdz-i-udostepnij-logi-minecraft-serwera","hitta-och-dela-minecraft-server-loggar",{},{"slug":7,"name":8},{"id":154,"slug":155,"game_slug":7,"title":156,"description":157,"category":53,"is_featured":10,"published_at":145,"content":80,"keywords":80,"allSlugs":158,"author":163,"date":145,"lastUpdated":145,"game":164},"8e2c2487-1356-46f0-b718-6e8abf13b091","installing-plugins-on-your-minecraft-server","Installing Plugins on Your Minecraft Server","Adding plugins to your Minecraft server can enhance gameplay and add new features. This guide will show you how to install plugins properly.",{"da":159,"de":160,"en":155,"pl":161,"sv":162},"installer-plugins-paa-din-minecraft-server","plugins-installieren-minecraft-server","instalacja-pluginow-minecraft-serwer","installera-plugins-pa-din-minecraft-server",{},{"slug":7,"name":8},{"id":166,"slug":167,"game_slug":7,"title":168,"description":169,"category":78,"is_featured":10,"published_at":145,"content":80,"keywords":80,"allSlugs":170,"author":175,"date":145,"lastUpdated":145,"game":176},"b27694a7-d64a-4b17-b3b9-ae0a28ec8cc3","backing-up-your-minecraft-world","Backing Up Your Minecraft World","Learn how to backup your Minecraft world to protect against data loss and accidents.",{"da":171,"de":172,"en":167,"pl":173,"sv":174},"sikkerhedskopiering-af-din-minecraft-verden","ihre-minecraft-welt-sichern","tworzenie-kopii-zapasowych-twojego-swiata-minecraft","sakerhetskopiera-din-minecraft-varld",{},{"slug":7,"name":8},{"id":178,"slug":179,"game_slug":7,"title":180,"description":181,"category":78,"is_featured":10,"published_at":145,"content":80,"keywords":80,"allSlugs":182,"author":187,"date":145,"lastUpdated":145,"game":188},"9f81644e-62bf-41f1-8cc0-18ef59f005bb","how-to-op-yourself-minecraft-server","How to OP Yourself on Your Minecraft Server (Complete Guide)","Learn how to make yourself or others an operator (OP) on your Minecraft server, manage permission levels, and best practices for server administration.",{"da":183,"de":184,"en":179,"pl":185,"sv":186},"saadan-giver-du-dig-selv-op-minecraft-server","op-rechte-geben-minecraft-server","jak-nadac-sobie-op-minecraft-serwer","ge-dig-sjalv-op-minecraft-server",{},{"slug":7,"name":8},{"id":52,"slug":63,"game_slug":7,"title":54,"description":55,"category":53,"is_featured":60,"published_at":61,"content":80,"keywords":80,"allSlugs":190,"author":191,"date":61,"lastUpdated":61,"game":192},{"da":65,"de":66,"en":63,"pl":67,"sv":68},{},{"slug":7,"name":8},{"id":194,"slug":195,"game_slug":7,"title":196,"description":197,"category":198,"is_featured":60,"published_at":199,"content":80,"keywords":80,"allSlugs":200,"author":205,"date":199,"lastUpdated":199,"game":206},"7a0998f2-5a98-44f5-af5e-74e6d4318173","how-to-change-world-type-flat-minecraft","How to Change Your Minecraft World Type to Flat (Superflat)","Learn how to change your Minecraft server world type to flat or superflat. Simple steps to generate a flat world for your server.","Server Configuration","2026-04-19T19:54:09.264302+00:00",{"da":201,"de":202,"en":195,"pl":203,"sv":204},"sådan-ændrer-du-verdenstype-flat-minecraft","wie-man-welttyp-flach-minecraft-aendert","jak-zmienic-typ-swiata-plaski-minecraft","hur-du-andrar-varldstyp-flat-minecraft",{},{"slug":7,"name":8},{"id":208,"slug":209,"game_slug":7,"title":210,"description":211,"category":78,"is_featured":60,"published_at":212,"content":80,"keywords":80,"allSlugs":213,"author":218,"date":212,"lastUpdated":212,"game":219},"56e6a09f-7568-471b-bc13-eaa0ae75aec1","minecraft-bedrock-error-u-000-fix","Minecraft Bedrock Error U-000: What It Means and How to Fix It","Getting error U-000 on Minecraft Bedrock? Learn what causes it and how to fix it. Usually means the server is already added to your list.","2026-04-19T10:17:14.968336+00:00",{"da":214,"de":215,"en":209,"pl":216,"sv":217},"minecraft-bedrock-fejl-u-000-fix","minecraft-bedrock-fehler-u-000-beheben","minecraft-bedrock-blad-u-000-naprawic","minecraft-bedrock-fel-u-000-fix",{},{"slug":7,"name":8},{"id":221,"slug":222,"game_slug":7,"title":223,"description":224,"category":78,"is_featured":60,"published_at":225,"content":80,"keywords":80,"allSlugs":226,"author":231,"date":225,"lastUpdated":225,"game":232},"5e9a49d5-4d0a-4355-9e80-49aba502317e","how-to-find-minecraft-server-seed","How to Find Your Minecraft Server Seed","Learn how to find your Minecraft server's world seed using the console or in-game with OP permissions.","2026-04-18T16:46:30.457222+00:00",{"da":227,"de":228,"en":222,"pl":229,"sv":230},"sådan-finder-du-minecraft-server-seed","wie-man-minecraft-server-seed-findet","jak-znaleźć-seed-serwer-minecraft","hur-du-hittar-minecraft-server-seed",{},{"slug":7,"name":8},{"id":234,"slug":235,"game_slug":7,"title":236,"description":237,"category":78,"is_featured":60,"published_at":238,"content":80,"keywords":80,"allSlugs":239,"author":244,"date":238,"lastUpdated":238,"game":245},"60b2b321-055a-45a0-86e0-119242324e08","how-to-start-fresh-minecraft-server","How to Start Fresh on Your Minecraft Server (Reset World)","Learn how to reset your Minecraft server and start fresh. Delete your world, choose a new version, and set up a clean server in minutes.","2026-04-18T16:40:26.197706+00:00",{"da":240,"de":241,"en":235,"pl":242,"sv":243},"sådan-starter-du-forfra-minecraft-server","wie-man-minecraft-server-neu-startet","jak-zacząć-od-nowa-serwer-minecraft","hur-du-startar-om-minecraft-server",{},{"slug":7,"name":8},{"id":247,"slug":248,"game_slug":7,"title":249,"description":250,"category":78,"is_featured":60,"published_at":251,"content":80,"keywords":80,"allSlugs":252,"author":257,"date":251,"lastUpdated":251,"game":258},"7bb22eed-58c0-45be-87ad-ebad68479a3d","how-to-teleport-minecraft-server","How to Teleport on Your Minecraft Server","Learn how to use the teleport command on your Minecraft server. Teleport players, yourself, or move to specific coordinates.","2026-04-18T09:48:06.501155+00:00",{"da":253,"de":254,"en":248,"pl":255,"sv":256},"sådan-teleporterer-du-minecraft-server","wie-man-teleportiert-minecraft-server","jak-teleportować-serwer-minecraft","hur-du-teleporterar-minecraft-server",{},{"slug":7,"name":8},{"id":260,"slug":261,"game_slug":7,"title":262,"description":263,"category":131,"is_featured":60,"published_at":264,"content":80,"keywords":80,"allSlugs":265,"author":270,"date":264,"lastUpdated":264,"game":271},"8461808a-947b-425c-9a06-09ac3c090952","how-to-add-resource-pack-minecraft-server","How to Add a Resource Pack to Your Minecraft Server","Complete guide to adding custom resource packs to your Minecraft server, including hosting requirements, server.properties configuration, and making resource packs mandatory for players.","2026-04-01T09:50:11.51217+00:00",{"da":266,"de":267,"en":261,"pl":268,"sv":269},"saadan-tilfojer-du-ressourcepakke-minecraft-server","wie-du-ressourcenpaket-minecraft-server-hinzufuegst","jak-dodac-paczke-zasobow-minecraft-serwer","hur-du-lagger-till-resurspaket-minecraft-server",{},{"slug":7,"name":8},{"id":273,"slug":274,"game_slug":7,"title":275,"description":276,"category":198,"is_featured":60,"published_at":277,"content":80,"keywords":80,"allSlugs":278,"author":283,"date":277,"lastUpdated":277,"game":284},"7beae2ca-456b-4a1a-8f19-12c84451859d","how-to-enable-hardcore-mode-for-your-minecraft-server","How to Enable Hardcore Mode for your Minecraft Server","Learn how to enable Hardcore mode on your Minecraft server, where death is permanent and difficulty is set to Hard.","2026-03-12T13:23:40.341+00:00",{"da":279,"de":280,"en":274,"pl":281,"sv":282},"sadan-aktiverer-du-hardcore-tilstand-i-minecraft","so-aktivieren-sie-den-hardcore-modus-in-minecraft","jak-waczyc-tryb-hardcore-w-minecraft","hur-man-aktiverar-hardcore-lage-i-minecraft",{},{"slug":7,"name":8},{"id":286,"slug":287,"game_slug":7,"title":288,"description":289,"category":198,"is_featured":60,"published_at":290,"content":80,"keywords":80,"allSlugs":291,"author":296,"date":290,"lastUpdated":290,"game":297},"eac354c2-46d8-4600-9e17-ae419552bf40","how-to-enable-minecraft-crossplay-with-geysermc","How to Enable Minecraft Crossplay with GeyserMC","Learn how to set up GeyserMC for crossplay between Java and Bedrock players on your Minecraft server","2026-03-12T13:19:40.118+00:00",{"da":292,"de":293,"en":287,"pl":294,"sv":295},"sadan-aktiverer-du-minecraft-crossplay-med-geysermc","so-aktivieren-sie-minecraft-crossplay-mit-geysermc","jak-waczyc-funkcje-crossplay-w-minecraft-z-geysermc","hur-du-aktiverar-minecraft-crossplay-med-geysermc",{},{"slug":7,"name":8},{"id":299,"slug":300,"game_slug":7,"title":301,"description":302,"category":198,"is_featured":60,"published_at":303,"content":80,"keywords":80,"allSlugs":304,"author":309,"date":303,"lastUpdated":303,"game":310},"716aaf43-c46c-4aa3-af4c-72c972da056f","how-to-allow-cracked-versions-on-your-minecraft-server","How to Allow Cracked Versions on Your Minecraft Server","Enable cracked player support on your Minecraft server with these steps","2026-01-11T16:18:18.439+00:00",{"da":305,"de":306,"en":300,"pl":307,"sv":308},"sadan-aktiverer-du-cracked-versioner-pa-din-minecraft-server","so-aktivieren-sie-crack-versionen-auf-ihrem-minecraft-server","jak-zezwolic-na-wersje-cracked-na-twoim-serwerze-minecraft","hur-du-tillater-cracked-versioner-pa-din-minecraft-server",{},{"slug":7,"name":8},{"id":312,"slug":313,"game_slug":7,"title":314,"description":315,"category":131,"is_featured":60,"published_at":316,"content":80,"keywords":80,"allSlugs":317,"author":322,"date":316,"lastUpdated":316,"game":323},"1ea9a5f4-b137-4629-b9bb-efab5fb9ef74","how-to-use-custom-world-seeds-in-minecraft","How to Use Custom World Seeds in Minecraft","Learn how to use custom world seeds for your Minecraft server's world generation","2026-01-11T15:00:33.662+00:00",{"da":318,"de":319,"en":313,"pl":320,"sv":321},"sadan-bruger-du-brugerdefinerede-verdensfr-i-minecraft","so-verwenden-sie-benutzerdefinierte-weltseeds-in-minecraft","jak-korzystac-z-niestandardowych-nasion-swiata-w-minecraft","hur-du-anvander-anpassade-varldsfroer-i-minecraft",{},{"slug":7,"name":8},{"id":325,"slug":326,"game_slug":7,"title":327,"description":328,"category":198,"is_featured":60,"published_at":329,"content":80,"keywords":80,"allSlugs":330,"author":335,"date":329,"lastUpdated":329,"game":336},"8b96c9f3-994b-4574-a28a-803c8ff194c1","minecraft-eula-agreement","Minecraft EULA Agreement","Learn how to agree to your Minecraft server's EULA and resolve related errors","2026-01-09T12:02:39.328+00:00",{"da":331,"de":332,"en":326,"pl":333,"sv":334},"minecraft-eula-aftale","minecraft-eula-vereinbarung","umowa-licencyjna-minecraft-eula","minecraft-eula-avtal",{},{"slug":7,"name":8},{"id":338,"slug":339,"game_slug":7,"title":340,"description":341,"category":93,"is_featured":60,"published_at":342,"content":80,"keywords":80,"allSlugs":343,"author":348,"date":342,"lastUpdated":342,"game":349},"2531c68d-4b10-4f2f-85e5-1d12966017b0","how-to-change-player-count-minecraft-server","How to Change Player Count for Minecraft Servers","Learn how to modify the maximum player count on your Minecraft server using server.properties. Step-by-step guide to increase or decrease player limits on your server.","2025-06-06T00:00:00+00:00",{"da":344,"de":345,"en":339,"pl":346,"sv":347},"saadan-aendrer-du-spillerantal-minecraft-server","spieleranzahl-aendern-minecraft-server","jak-zmienic-liczbe-graczy-minecraft-serwer","andra-spelarantal-minecraft-server",{},{"slug":7,"name":8},{"id":351,"slug":352,"game_slug":7,"title":353,"description":354,"category":78,"is_featured":60,"published_at":355,"content":80,"keywords":80,"allSlugs":356,"author":360,"date":355,"lastUpdated":355,"game":361},"b70df4f1-c8e8-4744-ad78-05b17ec346e2","minecraft-server-types-guide","Understanding Minecraft Server Types: A Complete Guide","Learn about different Minecraft server types, from Vanilla to modded servers. Compare PaperMC, Forge, Fabric, and proxy servers to choose the best option for your needs.","2025-02-17T00:00:00+00:00",{"da":357,"de":358,"en":352,"pl":359,"sv":357},"minecraft-servertyper-guide","minecraft-servertypen-anleitung","typy-serwerow-minecraft-poradnik",{},{"slug":7,"name":8},{"id":363,"slug":364,"game_slug":7,"title":365,"description":366,"category":198,"is_featured":60,"published_at":367,"content":80,"keywords":80,"allSlugs":368,"author":373,"date":367,"lastUpdated":367,"game":374},"d1c970d6-1d82-4538-9521-19c47866f40c","how-to-increase-build-limit","How To Increase Build Limit on Your Minecraft Server","Learn how to increase the build height limit on your Minecraft server for both newer versions (1.18+) using datapacks and older versions through server properties.","2024-11-06T00:00:00+00:00",{"da":369,"de":370,"en":364,"pl":371,"sv":372},"saadan-oeges-byggegransen","bauhoehe-erhoehen-anleitung","jak-zwiekszyc-limit-budowania","oka-bygggransen",{},{"slug":7,"name":8},{"id":376,"slug":377,"game_slug":7,"title":378,"description":379,"category":78,"is_featured":60,"published_at":380,"content":80,"keywords":80,"allSlugs":381,"author":386,"date":380,"lastUpdated":380,"game":387},"39f1991d-f05c-47e9-8014-ca96dad32c80","minecraft-game-rules-guide","How to Use Game Rules in Minecraft: Complete Command Guide","Learn how to customize your Minecraft server using game rules. Discover essential commands to control mob spawning, weather, inventory, PvP, and more without mods or plugins.","2024-09-20T00:00:00+00:00",{"da":382,"de":383,"en":377,"pl":384,"sv":385},"minecraft-spilleregler-guide","minecraft-spielregeln-anleitung","minecraft-zasady-gry-poradnik","minecraft-spelregler-guide",{},{"slug":7,"name":8},{"id":389,"slug":390,"game_slug":7,"title":391,"description":392,"category":93,"is_featured":60,"published_at":94,"content":80,"keywords":80,"allSlugs":393,"author":398,"date":94,"lastUpdated":94,"game":399},"0f768e08-0096-4a9a-8a30-80cac994509f","subdomain-vs-dedicated-ip-minecraft-servers","What is a Subdomain and Dedicated IP for Minecraft Servers","Learn the differences between subdomains and dedicated IP addresses for Minecraft servers. Understand which option is best for your server performance, security, and accessibility.",{"da":394,"de":395,"en":390,"pl":396,"sv":397},"subdomain-vs-dedikeret-ip-minecraft-servere","subdomain-vs-dedizierte-ip-minecraft-server","subdomena-vs-dedykowane-ip-minecraft-serwery","subdoman-vs-dedikerad-ip-minecraft-servrar",{},{"slug":7,"name":8},{"slug":7,"name":8,"icon":9,"description":401},"Elevate your Minecraft hosting experience on our robust network, with seamless support, instant server deployment, and the ability to customize your server to your liking. Scalable, Powerful, and Affordable.",{"left":403,"top":403,"width":404,"height":404,"rotate":403,"vFlip":60,"hFlip":60,"body":405},0,20,"\u003Cpath fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8.22 5.22a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06-1.06L11.94 10L8.22 6.28a.75.75 0 0 1 0-1.06\" clip-rule=\"evenodd\"\u002F>",{"left":403,"top":403,"width":404,"height":404,"rotate":403,"vFlip":60,"hFlip":60,"body":407},"\u003Cpath fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M18 10a8 8 0 1 1-16 0a8 8 0 0 1 16 0m-5.5-2.5a2.5 2.5 0 1 1-5 0a2.5 2.5 0 0 1 5 0M10 12a5.99 5.99 0 0 0-4.793 2.39A6.48 6.48 0 0 0 10 16.5a6.48 6.48 0 0 0 4.793-2.11A5.99 5.99 0 0 0 10 12\" clip-rule=\"evenodd\"\u002F>",{"left":403,"top":403,"width":404,"height":404,"rotate":403,"vFlip":60,"hFlip":60,"body":409},"\u003Cpath fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m.75-13a.75.75 0 0 0-1.5 0v5c0 .414.336.75.75.75h4a.75.75 0 0 0 0-1.5h-3.25z\" clip-rule=\"evenodd\"\u002F>",{"left":403,"top":403,"width":404,"height":404,"rotate":403,"vFlip":60,"hFlip":60,"body":411},"\u003Cg fill=\"currentColor\">\u003Cpath d=\"M5.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H6a.75.75 0 0 1-.75-.75zM6 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75zM7.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H8a.75.75 0 0 1-.75-.75zM8 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75zM9.25 10a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H10a.75.75 0 0 1-.75-.75zm.75 1.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V12a.75.75 0 0 0-.75-.75zM9.25 14a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H10a.75.75 0 0 1-.75-.75zM12 9.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V10a.75.75 0 0 0-.75-.75zM11.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H12a.75.75 0 0 1-.75-.75zm.75 1.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75zM13.25 10a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H14a.75.75 0 0 1-.75-.75zm.75 1.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V12a.75.75 0 0 0-.75-.75z\"\u002F>\u003Cpath fill-rule=\"evenodd\" d=\"M5.75 2a.75.75 0 0 1 .75.75V4h7V2.75a.75.75 0 0 1 1.5 0V4h.25A2.75 2.75 0 0 1 18 6.75v8.5A2.75 2.75 0 0 1 15.25 18H4.75A2.75 2.75 0 0 1 2 15.25v-8.5A2.75 2.75 0 0 1 4.75 4H5V2.75A.75.75 0 0 1 5.75 2m-1 5.5c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25v-6.5c0-.69-.56-1.25-1.25-1.25z\" clip-rule=\"evenodd\"\u002F>\u003C\u002Fg>",{"left":403,"top":403,"width":404,"height":404,"rotate":403,"vFlip":60,"hFlip":60,"body":413},"\u003Cg fill=\"currentColor\">\u003Cpath d=\"m5.433 13.917l1.262-3.155A4 4 0 0 1 7.58 9.42l6.92-6.918a2.121 2.121 0 0 1 3 3l-6.92 6.918c-.383.383-.84.685-1.343.886l-3.154 1.262a.5.5 0 0 1-.65-.65\"\u002F>\u003Cpath d=\"M3.5 5.75c0-.69.56-1.25 1.25-1.25H10A.75.75 0 0 0 10 3H4.75A2.75 2.75 0 0 0 2 5.75v9.5A2.75 2.75 0 0 0 4.75 18h9.5A2.75 2.75 0 0 0 17 15.25V10a.75.75 0 0 0-1.5 0v5.25c0 .69-.56 1.25-1.25 1.25h-9.5c-.69 0-1.25-.56-1.25-1.25z\"\u002F>\u003C\u002Fg>",1776966760693]