[{"data":1,"prerenderedAt":397},["ShallowReactive",2],{"header-games":3,"article-change-minecraft-server-motd-en":61,"help-game-articles-minecraft-en":82,"game-info-article-minecraft":384,"i-heroicons:chevron-right-20-solid":387,"i-heroicons:user-circle-20-solid":391,"i-heroicons:clock-20-solid":393,"i-heroicons:calendar-days-20-solid":395},{"total":4,"featuredSlot":5,"featured":11},25,{"slug":6,"name":7,"icon":8,"hasIcon":9,"kind":10},"rust","Rust","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Frust.png",true,null,[12,19,26,31,33,39,44,49,56],{"slug":13,"name":14,"icon":15,"hasIcon":9,"badge":16,"basePrice":17,"link":18},"minecraft","Minecraft","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fminecraft.png","Most Popular",1,"\u002Fminecraft-server-hosting",{"slug":20,"name":21,"icon":22,"hasIcon":9,"badge":23,"basePrice":24,"link":25},"hytale","Hytale","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fhytale.png","",6,"\u002Fhytale-server-hosting",{"slug":27,"name":28,"icon":29,"hasIcon":9,"badge":10,"basePrice":24,"link":30},"palworld","Palworld","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fpalworld.png","\u002Fpalworld-server-hosting",{"slug":6,"name":7,"icon":8,"hasIcon":9,"badge":10,"basePrice":24,"link":32},"\u002Frust-server-hosting",{"slug":34,"name":35,"icon":36,"hasIcon":9,"badge":10,"basePrice":37,"link":38},"valheim","Valheim","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fvalheim.png",5,"\u002Fvalheim-server-hosting",{"slug":40,"name":41,"icon":42,"hasIcon":9,"badge":10,"basePrice":24,"link":43},"satisfactory","Satisfactory","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fsatisfactory.png","\u002Fsatisfactory-server-hosting",{"slug":45,"name":46,"icon":47,"hasIcon":9,"badge":10,"basePrice":24,"link":48},"enshrouded","Enshrouded","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fenshrouded.png","\u002Fenshrouded-server-hosting",{"slug":50,"name":51,"icon":52,"hasIcon":9,"badge":53,"basePrice":54,"link":55},"terraria","Terraria","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fterraria.png","New Update",4,"\u002Fterraria-server-hosting",{"slug":57,"name":58,"icon":59,"hasIcon":9,"badge":10,"basePrice":54,"link":60},"project-zomboid","Project Zomboid","https:\u002F\u002Fcdn.doomhosting.com\u002Ficons\u002Fproject-zomboid.png","\u002Fproject-zomboid-server-hosting",{"id":62,"game_slug":13,"slug":63,"category":64,"title":65,"description":66,"content":67,"keywords":68,"author_name":69,"author_role":70,"is_featured":71,"published_at":72,"allSlugs":73,"author":78,"date":72,"lastUpdated":79,"game":80,"dateFormatted":81,"lastUpdatedFormatted":81},"ac10f2c0-5353-4434-b551-829016920ec2","change-minecraft-server-motd","Configuration","How to Change the MOTD on Your Minecraft Server","Learn how to change your Minecraft server MOTD, add color codes, format with section signs, insert line breaks, and fix common encoding issues. Java and Bedrock covered.","## How to Change the MOTD on Your Minecraft Server\n\nThe MOTD (Message of the Day) is the line of text players see next to your server in the multiplayer list, right under the server name. It is the first thing anyone sees before connecting, so getting it right helps your server stand out in a long list. This guide covers Java Edition and Bedrock, color codes, formatting, line breaks, and the gotchas that trip people up.\n\n## Java Edition: Edit server.properties\n\nOpen your server in the Pterodactyl panel and click the **File Manager** tab. Find `server.properties` in the root folder and click to edit it. Look for the line:\n\n```\nmotd=A Minecraft Server\n```\n\nReplace the right side with whatever you want, save the file, then restart the server. The new MOTD shows up the next time someone refreshes their server list.\n\nA plain change looks like:\n\n```\nmotd=Welcome to my survival realm\n```\n\nThat is all you need for a basic text MOTD. The rest of this guide is about making it look good.\n\n## Color and Formatting Codes\n\nMinecraft uses the § (section sign) followed by a single character to color or style text. You type § literally in `server.properties`, or use `\\u00A7` if your editor refuses to insert non-ASCII characters.\n\n| Code | Color |\n|---|---|\n| `§0` | Black |\n| `§1` | Dark Blue |\n| `§2` | Dark Green |\n| `§3` | Dark Aqua |\n| `§4` | Dark Red |\n| `§5` | Dark Purple |\n| `§6` | Gold |\n| `§7` | Gray |\n| `§8` | Dark Gray |\n| `§9` | Blue |\n| `§a` | Green |\n| `§b` | Aqua |\n| `§c` | Red |\n| `§d` | Light Purple |\n| `§e` | Yellow |\n| `§f` | White |\n\n| Code | Format |\n|---|---|\n| `§l` | Bold |\n| `§o` | Italic |\n| `§n` | Underline |\n| `§m` | Strikethrough |\n| `§k` | Obfuscated (random scrambling characters) |\n| `§r` | Reset (clears all formatting) |\n\nEach code applies from where it appears until you reset it or set a new color. Example:\n\n```\nmotd=§6§lEpic SMP§r §7- §aSurvival §7- §b1.20.4\n```\n\nThat gives you a gold bold \"Epic SMP\", a gray dash, green \"Survival\", another gray dash, and an aqua version tag.\n\n## Adding a Second Line\n\nThe MOTD slot in the server list is two lines tall. Insert a literal `\\n` to break the line:\n\n```\nmotd=§6§lEpic SMP\\n§7Survival, Whitelist, 1.20.4\n```\n\nThe first line is usually the headline, the second is a tagline, game mode, or version. Keep each line under about 45 characters so the player's client does not truncate it.\n\n## Hex Colors (Paper, Spigot, Purpur 1.16+)\n\nVanilla `server.properties` does not support hex colors directly. On Paper, Spigot, or Purpur 1.16 and newer, you can chain section codes to express a six-digit hex value:\n\n```\nmotd=§x§F§F§A§5§0§0Epic SMP§r\n```\n\nStart with `§x`, then prefix each of the six hex digits with `§`. It is verbose but works. For cleaner hex MOTDs, install a plugin like ServerListPlus or Advanced Server List, which lets you write `\u003C#FFA500>Epic SMP\u003C\u002Fcolor>` and handles the encoding for you.\n\n## Bedrock Edition\n\nBedrock servers do not have a separate MOTD field. The line shown in the LAN and featured server list is set by:\n\n```\nserver-name=My Bedrock Server\n```\n\nBedrock also has a `level-name` field, but that is the world folder name, not what players see. Color codes mostly do not render on the Bedrock server list. If you run Java with GeyserMC as a Bedrock proxy, Bedrock players see your Java MOTD with full color support.\n\n## Common Issues\n\n- **MOTD shows literal `§6` instead of color**: your editor saved the file with the wrong encoding. Open `server.properties` and save it as **UTF-8 without BOM**. Most panel file editors handle this automatically. If you downloaded the file to edit on your computer, re-upload as plain text.\n- **`\\n` shows as the text `\\n` instead of a line break**: this escape only works in `server.properties` because Java reads it as a real newline at startup. If you are editing a plugin config or `bukkit.yml`, you usually need a real newline inside quotes instead.\n- **Changes do not apply**: `server.properties` is read once at startup. Restart the server fully, do not just reload.\n- **MOTD looks blank in the server list**: the `§` character got stripped. Many web editors and copy-paste from chat apps replace it with a question mark or remove it entirely. Type it directly in the panel editor or use `\\u00A7` instead.\n- **Two lines run into each other**: you used `\\\\n` (double-escaped) instead of `\\n`. The file must contain exactly two characters: backslash and the letter n.\n- **Emojis or non-Latin characters look wrong**: emojis work, but only if the file is saved as UTF-8. Some older clients on Windows display them as boxes, and there is nothing to fix server-side.\n\n## Test Without Restarting Repeatedly\n\nIf you are dialing in colors, build the line in our [Minecraft MOTD editor](\u002Ftools\u002Fminecraft-motd-editor) first. It renders exactly what the Minecraft client will show, supports color codes, formatting, and a second line, and gives you the finished `motd=` line ready to paste into `server.properties`. Saves three or four restart cycles while you tune the look.\n## Related Articles\n\n- [Minecraft MOTD editor (live preview)](\u002Ftools\u002Fminecraft-motd-editor)\n- [How to change your Minecraft server icon](\u002Fhelp\u002Farticles\u002Fchange-minecraft-server-icon)\n- [Configuring spawn protection](\u002Fhelp\u002Farticles\u002Fconfiguring-spawn-protection-minecraft-server)\n- [Setting up a whitelist](\u002Fhelp\u002Farticles\u002Fsetting-up-whitelist-on-minecraft-server)\n","minecraft motd, change motd minecraft, minecraft server motd, motd color codes, minecraft motd formatting, server.properties motd, doomhosting","Andreas","Founder & Hosting Engineer",false,"2026-05-27T11:34:23.601+00:00",{"da":74,"de":75,"en":63,"pl":76,"sv":77},"sadan-aendrer-du-motd-minecraft-server","minecraft-server-motd-aendern","jak-zmienic-motd-serwer-minecraft","sa-har-andrar-du-motd-minecraft-server",{"name":69,"role":70},"2026-05-27T11:36:59.661806+00:00",{"slug":13,"name":14},"May 27, 2026",[83,93,101,114,123,131,141,151,159,167,178,189,197,205,213,216,226,236,246,255,265,274,283,293,302,310,319,327,336,346,356,366,376],{"id":84,"game_slug":13,"slug":85,"category":64,"title":86,"description":87,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":88,"author":89,"date":88,"lastUpdated":90,"game":91,"dateFormatted":92},"1c7b86b2-cb6e-47e3-ade9-b609250a93ad","how-to-disable-locator-bar-minecraft-server","How to Turn Off the Locator Bar on Your Minecraft Server","Minecraft 1.21.6 added the Locator Bar that shows nearby players above the hotbar. Run \u002Fgamerule locatorBar false to disable it, plus per-world setups and Bedrock.","2026-05-29T00:00:00+00:00",{"name":69,"role":70},"2026-06-04T07:03:30.506406+00:00",{"slug":13,"name":14},"May 29, 2026",{"id":94,"game_slug":13,"slug":95,"category":64,"title":96,"description":97,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":88,"author":98,"date":88,"lastUpdated":99,"game":100,"dateFormatted":92},"0136727a-bb22-44a0-813a-f4075f880615","how-to-toggle-pvp-minecraft-server","How to Turn PvP On or Off on Your Minecraft Server","Minecraft 1.21.2 moved PvP from server.properties to \u002Fgamerule pvp. Here is how to turn PvP on or off without restarting, plus per-world rules and older versions.",{"name":69,"role":70},"2026-06-04T07:03:29.024241+00:00",{"slug":13,"name":14},{"id":102,"game_slug":13,"slug":103,"category":104,"title":105,"description":106,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":9,"published_at":109,"author":110,"date":109,"lastUpdated":111,"game":112,"dateFormatted":113},"eabf4941-3b30-425b-a452-b44ebe9ed0f8","how-to-upload-world-minecraft-server","Getting Started","How to Upload Your Own World to Your Minecraft Server","Upload your own Minecraft world to your server: move a singleplayer world or downloaded map via the panel file manager or FTP, then set level-name.","Magnus","Game Server Expert","2026-05-28T00:00:00+00:00",{"name":107,"role":108},"2026-05-28T17:31:48.836943+00:00",{"slug":13,"name":14},"May 28, 2026",{"id":115,"game_slug":13,"slug":116,"category":117,"title":118,"description":119,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":9,"published_at":109,"author":120,"date":109,"lastUpdated":121,"game":122,"dateFormatted":113},"3d36bce0-9869-4b21-94f3-f65fcf2eca55","how-to-migrate-paper-world-to-vanilla-forge","Administration","How to Migrate a Paper World to Vanilla, Forge, or Fabric","Paper 26.1 changed how worlds are stored. Migrate your Paper world to Vanilla, Forge, or Fabric without resetting your Nether or End, for new and old versions.",{"name":107,"role":108},"2026-05-28T20:00:24.339746+00:00",{"slug":13,"name":14},{"id":124,"game_slug":13,"slug":125,"category":64,"title":126,"description":127,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":9,"published_at":109,"author":128,"date":109,"lastUpdated":129,"game":130,"dateFormatted":113},"9be4b589-861a-4ac1-b5f9-77e4be9d9087","how-to-change-minecraft-server-difficulty","How to Change the Difficulty on Your Minecraft Server","Change your Minecraft server difficulty between Peaceful, Easy, Normal, and Hard. Covers the instant \u002Fdifficulty command and the permanent server.properties method.",{"name":107,"role":108},"2026-05-28T17:19:30.510981+00:00",{"slug":13,"name":14},{"id":132,"game_slug":13,"slug":133,"category":64,"title":134,"description":135,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":136,"author":137,"date":136,"lastUpdated":138,"game":139,"dateFormatted":140},"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.","2025-01-25T00:00:00+00:00",{"name":69,"role":70},"2026-05-19T10:14:34.603013+00:00",{"slug":13,"name":14},"Jan 25, 2025",{"id":142,"game_slug":13,"slug":143,"category":117,"title":144,"description":145,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":146,"author":147,"date":146,"lastUpdated":148,"game":149,"dateFormatted":150},"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.","2024-03-19T00:00:00+00:00",{"name":69,"role":70},"2026-05-19T10:14:35.005894+00:00",{"slug":13,"name":14},"Mar 19, 2024",{"id":152,"game_slug":13,"slug":153,"category":104,"title":154,"description":155,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":146,"author":156,"date":146,"lastUpdated":157,"game":158,"dateFormatted":150},"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.",{"name":69,"role":70},"2026-05-19T10:14:35.376765+00:00",{"slug":13,"name":14},{"id":160,"game_slug":13,"slug":161,"category":64,"title":162,"description":163,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":146,"author":164,"date":146,"lastUpdated":165,"game":166,"dateFormatted":150},"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.",{"name":69,"role":70},"2026-05-19T10:14:35.794564+00:00",{"slug":13,"name":14},{"id":168,"game_slug":13,"slug":169,"category":170,"title":171,"description":172,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":173,"author":174,"date":173,"lastUpdated":175,"game":176,"dateFormatted":177},"56ff059c-f31b-46f9-92fc-a1cefd2274c6","change-minecraft-server-icon","Mods & Customization","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","2024-01-13T00:00:00+00:00",{"name":69,"role":70},"2026-05-14T12:04:15.907564+00:00",{"slug":13,"name":14},"Jan 13, 2024",{"id":179,"game_slug":13,"slug":180,"category":181,"title":182,"description":183,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":184,"author":185,"date":184,"lastUpdated":186,"game":187,"dateFormatted":188},"7a9bac5b-c85e-425c-a83f-a982ffd723d5","find-and-share-your-minecraft-server-logs","Troubleshooting","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",{"name":69,"role":70},"2026-05-19T10:14:34.786527+00:00",{"slug":13,"name":14},"Jan 8, 2024",{"id":190,"game_slug":13,"slug":191,"category":117,"title":192,"description":193,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":184,"author":194,"date":184,"lastUpdated":195,"game":196,"dateFormatted":188},"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.",{"name":69,"role":70},"2026-05-19T10:14:34.463918+00:00",{"slug":13,"name":14},{"id":198,"game_slug":13,"slug":199,"category":117,"title":200,"description":201,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":184,"author":202,"date":184,"lastUpdated":203,"game":204,"dateFormatted":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.",{"name":69,"role":70},"2026-05-19T10:14:34.295693+00:00",{"slug":13,"name":14},{"id":206,"game_slug":13,"slug":207,"category":170,"title":208,"description":209,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":9,"published_at":184,"author":210,"date":184,"lastUpdated":211,"game":212,"dateFormatted":188},"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.",{"name":69,"role":70},"2026-05-19T10:14:34.861604+00:00",{"slug":13,"name":14},{"id":62,"game_slug":13,"slug":63,"category":64,"title":65,"description":66,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":72,"author":214,"date":72,"lastUpdated":79,"game":215,"dateFormatted":81},{"name":69,"role":70},{"slug":13,"name":14},{"id":217,"game_slug":13,"slug":218,"category":64,"title":219,"description":220,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":221,"author":222,"date":221,"lastUpdated":223,"game":224,"dateFormatted":225},"f868b4a2-0b06-43c3-9e8d-ca9cb017a11d","minecraft-one-player-sleep","How to Make Only One Player Sleep to Skip Night on Your Minecraft Server","Learn how to use the playersSleepingPercentage gamerule so only one player needs to sleep to skip night on your Minecraft server. Works on Java 1.17+.","2026-05-19T00:00:00+00:00",{"name":69,"role":70},"2026-05-19T11:53:27.493972+00:00",{"slug":13,"name":14},"May 19, 2026",{"id":227,"game_slug":13,"slug":228,"category":170,"title":229,"description":230,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":71,"published_at":231,"author":232,"date":231,"lastUpdated":233,"game":234,"dateFormatted":235},"d0dbe651-46f9-4b4c-8770-ec900bd8191e","how-to-set-up-simple-voice-chat-on-your-minecraft-server","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.","2026-04-22T12:54:47.395+00:00",{"name":107,"role":108},"2026-05-14T13:33:09.520904+00:00",{"slug":13,"name":14},"Apr 22, 2026",{"id":237,"game_slug":13,"slug":238,"category":64,"title":239,"description":240,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":71,"published_at":241,"author":242,"date":241,"lastUpdated":243,"game":244,"dateFormatted":245},"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.","2026-04-19T19:54:09.264302+00:00",{"name":107,"role":108},"2026-05-19T10:14:35.261802+00:00",{"slug":13,"name":14},"Apr 19, 2026",{"id":247,"game_slug":13,"slug":248,"category":181,"title":249,"description":250,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":71,"published_at":251,"author":252,"date":251,"lastUpdated":253,"game":254,"dateFormatted":245},"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",{"name":107,"role":108},"2026-05-19T10:14:35.843722+00:00",{"slug":13,"name":14},{"id":256,"game_slug":13,"slug":257,"category":64,"title":258,"description":259,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":71,"published_at":260,"author":261,"date":260,"lastUpdated":262,"game":263,"dateFormatted":264},"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",{"name":107,"role":108},"2026-05-19T10:14:35.47626+00:00",{"slug":13,"name":14},"Apr 18, 2026",{"id":266,"game_slug":13,"slug":267,"category":117,"title":268,"description":269,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":71,"published_at":270,"author":271,"date":270,"lastUpdated":272,"game":273,"dateFormatted":264},"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",{"name":107,"role":108},"2026-05-19T10:14:35.216162+00:00",{"slug":13,"name":14},{"id":275,"game_slug":13,"slug":276,"category":117,"title":277,"description":278,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":71,"published_at":279,"author":280,"date":279,"lastUpdated":281,"game":282,"dateFormatted":264},"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",{"name":107,"role":108},"2026-06-04T07:03:31.50224+00:00",{"slug":13,"name":14},{"id":284,"game_slug":13,"slug":285,"category":170,"title":286,"description":287,"content":10,"keywords":10,"author_name":107,"author_role":108,"is_featured":71,"published_at":288,"author":289,"date":288,"lastUpdated":290,"game":291,"dateFormatted":292},"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",{"name":107,"role":108},"2026-05-14T12:04:15.57449+00:00",{"slug":13,"name":14},"Apr 1, 2026",{"id":294,"game_slug":13,"slug":295,"category":64,"title":296,"description":297,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":298,"author":299,"date":298,"lastUpdated":175,"game":300,"dateFormatted":301},"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",{"name":69,"role":70},{"slug":13,"name":14},"Mar 12, 2026",{"id":303,"game_slug":13,"slug":304,"category":64,"title":305,"description":306,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":307,"author":308,"date":307,"lastUpdated":175,"game":309,"dateFormatted":301},"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",{"name":69,"role":70},{"slug":13,"name":14},{"id":311,"game_slug":13,"slug":312,"category":64,"title":313,"description":314,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":315,"author":316,"date":315,"lastUpdated":175,"game":317,"dateFormatted":318},"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",{"name":69,"role":70},{"slug":13,"name":14},"Jan 11, 2026",{"id":320,"game_slug":13,"slug":321,"category":170,"title":322,"description":323,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":324,"author":325,"date":324,"lastUpdated":175,"game":326,"dateFormatted":318},"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",{"name":69,"role":70},{"slug":13,"name":14},{"id":328,"game_slug":13,"slug":329,"category":64,"title":330,"description":331,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":332,"author":333,"date":332,"lastUpdated":175,"game":334,"dateFormatted":335},"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",{"name":69,"role":70},{"slug":13,"name":14},"Jan 9, 2026",{"id":337,"game_slug":13,"slug":338,"category":104,"title":339,"description":340,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":341,"author":342,"date":341,"lastUpdated":343,"game":344,"dateFormatted":345},"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",{"name":69,"role":70},"2026-05-19T10:14:35.690387+00:00",{"slug":13,"name":14},"Jun 6, 2025",{"id":347,"game_slug":13,"slug":348,"category":64,"title":349,"description":350,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":351,"author":352,"date":351,"lastUpdated":353,"game":354,"dateFormatted":355},"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",{"name":69,"role":70},"2026-05-19T10:14:35.318074+00:00",{"slug":13,"name":14},"Feb 17, 2025",{"id":357,"game_slug":13,"slug":358,"category":64,"title":359,"description":360,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":361,"author":362,"date":361,"lastUpdated":363,"game":364,"dateFormatted":365},"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",{"name":69,"role":70},"2026-05-19T10:14:34.936776+00:00",{"slug":13,"name":14},"Nov 6, 2024",{"id":367,"game_slug":13,"slug":368,"category":64,"title":369,"description":370,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":371,"author":372,"date":371,"lastUpdated":373,"game":374,"dateFormatted":375},"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",{"name":69,"role":70},"2026-05-19T10:14:35.066515+00:00",{"slug":13,"name":14},"Sep 20, 2024",{"id":377,"game_slug":13,"slug":378,"category":104,"title":379,"description":380,"content":10,"keywords":10,"author_name":69,"author_role":70,"is_featured":71,"published_at":146,"author":381,"date":146,"lastUpdated":382,"game":383,"dateFormatted":150},"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.",{"name":69,"role":70},"2026-05-19T10:14:35.635905+00:00",{"slug":13,"name":14},{"slug":13,"name":14,"icon":15,"cardImage":385,"description":386},"https:\u002F\u002Fcdn.doomhosting.com\u002Fgames\u002Fminecraft.jpg","Minecraft is the legendary sandbox block-building game where entire worlds are made of voxels you can mine, craft, and reshape into anything from a humble cottage to a working CPU. Survive solo or run a community of hundreds with mods, plugins, and modpacks galore. Rent a dedicated Minecraft server from DoomHosting for instant setup, one-click Forge\u002FFabric\u002FPaper\u002FSpigot installs, full FTP access, DDoS protection, and 24\u002F7 expert support.",{"left":388,"top":388,"width":389,"height":389,"rotate":388,"vFlip":71,"hFlip":71,"body":390},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":388,"top":388,"width":389,"height":389,"rotate":388,"vFlip":71,"hFlip":71,"body":392},"\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":388,"top":388,"width":389,"height":389,"rotate":388,"vFlip":71,"hFlip":71,"body":394},"\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":388,"top":388,"width":389,"height":389,"rotate":388,"vFlip":71,"hFlip":71,"body":396},"\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>",1780563211315]