From af4f4b8158332d876f4c8694ad93f93e7ff915a5 Mon Sep 17 00:00:00 2001 From: fgalz Date: Wed, 14 Jan 2026 12:49:23 +0100 Subject: [PATCH 01/10] New guide: Hytale - Whitelist --- docs/hytale-whitelist.md | 130 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 docs/hytale-whitelist.md diff --git a/docs/hytale-whitelist.md b/docs/hytale-whitelist.md new file mode 100644 index 000000000..9f469ceb9 --- /dev/null +++ b/docs/hytale-whitelist.md @@ -0,0 +1,130 @@ +--- +id: hytale-whitelist +title: "Hytale: Whitelist Setup and Management" +description: "Discover how to secure your Hytale server by managing player access with whitelist features and protect your gameplay → Learn more now" +sidebar_label: Whitelist +services: + - gameserver-hytale +--- + +import YouTube from '@site/src/components/YouTube/YouTube'; +import InlineVoucher from '@site/src/components/InlineVoucher'; + +## Introduction +The whitelist is a security and access control feature that allows you to limit who can join your Hytale server. When enabled, only players that are explicitly listed on the whitelist are permitted to connect. This is especially useful for private servers, community servers, development environments, or testing phases where access should be restricted to trusted players only. + +![img](https://screensaver01.zap-hosting.com/index.php/s/mMjZWsYdmbnwQkQ/preview) + + + + + +## Activate whitelist + +The whitelist can be enabled either via the server console or directly in game. Make sure you have the required permissions, such as operator rights, before executing these commands. + +To enable the whitelist, run the following command: + +``` +/whitelist enable +``` + + + +Once enabled, any player who is not on the whitelist will be denied access when attempting to join the server. To verify whether the whitelist is currently active, use: + +``` +/whitelist status +``` + +This command returns the current state of the whitelist and helps confirm that the configuration has been applied correctly. + + + +## Deactivate whitelist + +If you want to allow all players to join the server again, the whitelist can be disabled at any time. Use the following command to deactivate it: + +``` +/whitelist disable +``` + +After disabling the whitelist, the server will no longer restrict access based on the whitelist and all players will be able to connect. + + + +## Manage whitelist + +The whitelist can be managed dynamically while the server is running. Players can be added or removed at any time without requiring a server restart when using commands. + + + +### Add player to whitelist + +To grant a specific player access to the server, add them to the whitelist using: + +``` +/whitelist add +``` + +The specified player will immediately be allowed to join the server, provided the whitelist is enabled. + + + +### Remove player from whitelist + +To revoke a player's access, remove them from the whitelist: + +``` +/whitelist remove +``` + +Once removed, the player will no longer be able to join while the whitelist is active. + + + +### List whitelisted players + +To view all players that are currently allowed to join the server, run: + +``` +/whitelist list +``` + +This command outputs the complete list of whitelisted player names. + + + +### Clear whitelist + +If you want to remove all players from the whitelist at once, you can clear it entirely: + +``` +/whitelist clear +``` + +This will delete all existing whitelist entries but does not disable the whitelist itself. + + + +## Manage whitelist via file + +In addition to commands, the whitelist can also be managed directly through a configuration file. This method is useful for bulk changes or when preparing a whitelist before starting the server. The file responsible for this configuration is called `whitelist.json` and is located in the server directory. + +```` +{ + "enabled": true, + "players": [ + "PlayerName1", + "PlayerName2" + ] +} +```` + + + +## Conclusion + +Congratulations, you have successfully set up the whitelist for your Hytale server. Your server is now restricted to approved players only, helping you maintain control, privacy, and a safer multiplayer environment. + +For further questions or assistance, please don't hesitate to contact our support team, which is available daily to assist you! 🙂 From ba9d6badc5abc353bf24ebe3c0c05ea52ff5ea7e Mon Sep 17 00:00:00 2001 From: fgalz Date: Wed, 14 Jan 2026 13:16:54 +0100 Subject: [PATCH 02/10] New guide: Hytale - Gamemode --- docs/hytale-gamemode.md | 70 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 docs/hytale-gamemode.md diff --git a/docs/hytale-gamemode.md b/docs/hytale-gamemode.md new file mode 100644 index 000000000..c07688749 --- /dev/null +++ b/docs/hytale-gamemode.md @@ -0,0 +1,70 @@ +--- +id: hytale-gamemode +title: "Hytale: Game Mode Configuration" +description: "Discover how to secure your Hytale server by managing player access with whitelist features and protect your gameplay → Learn more now" +sidebar_label: Whitelist +services: + - gameserver-hytale +--- + +import YouTube from '@site/src/components/YouTube/YouTube'; +import InlineVoucher from '@site/src/components/InlineVoucher'; + +## Introduction + +Hytale servers allow you to configure gameplay settings such as the game mode that defines the player experience. Changing the game mode lets you tailor your server to a specific playstyle or community preference. + +![img](https://screensaver01.zap-hosting.com/index.php/s/KsesqALHY3AgKHF/preview) + + + +## Change game mode + +### Live console +The game mode can be changed while the server is running by using the live console or in game commands, provided the required permissions are available. This method allows administrators to switch the game mode without editing configuration files. + +Using the console command updates the active game mode immediately for the server session. Depending on the server setup, the change may persist until the next restart or revert to the value defined in the configuration file. + +``` +/gamemode +``` + +The value of `GameMode` determines which game mode is applied when the server starts. Depending on your desired gameplay experience, this value can be adjusted accordingly. + +Commonly used game mode values include: + +- `Creative` for unrestricted building and content creation +- `Adventure` for structured gameplay with defined progression and interaction rules + +After changing the game mode value, the server must be restarted for the new setting to take effect. + + + +### Configuration file + +The game mode can be defined directly in the server configuration file. +This method is recommended when you want the server to always start with a specific game mode or when preparing a fresh server setup. + +The configuration file is accessible through your hosting control panel or file manager. Within this file, a setting controls the active game mode used when the server starts. After modifying this value, the server must be restarted for the change to take effect. + +``` +"Defaults": { +"World": "default", +"GameMode": "Adventure" +}, +``` + +The value of `GameMode` determines which game mode is applied when the server starts. Depending on your desired gameplay experience, this value can be adjusted accordingly. + +Commonly used game mode values include: + +- `Creative` for unrestricted building and content creation +- `Adventure` for structured gameplay with defined progression and interaction rules + +After changing the game mode value, the server must be restarted for the new setting to take effect. + + + +## Conclusion + +By configuring the game mode either through the server configuration file or the live console, you can precisely control the gameplay experience on your Hytale server. For further questions or assistance, please don't hesitate to contact our support team, which is available daily to assist you! 🙂 From b448fc3bc3548671f141db63c03760a8ec488936 Mon Sep 17 00:00:00 2001 From: fgalz Date: Wed, 14 Jan 2026 13:54:39 +0100 Subject: [PATCH 03/10] New guide: Hytale - World Management --- docs/hytale-world-management.md | 60 +++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 docs/hytale-world-management.md diff --git a/docs/hytale-world-management.md b/docs/hytale-world-management.md new file mode 100644 index 000000000..267c0ca1b --- /dev/null +++ b/docs/hytale-world-management.md @@ -0,0 +1,60 @@ +--- +id: hytale-world-management +title: "Hytale: Worlds Management" +description: "Discover how to secure your Hytale server by managing player access with whitelist features and protect your gameplay → Learn more now" +sidebar_label: Whitelist +services: + - gameserver-hytale +--- + +import YouTube from '@site/src/components/YouTube/YouTube'; +import InlineVoucher from '@site/src/components/InlineVoucher'; + +## Introduction + +World management on a Hytale server involves controlling the persistent game environment in which players explore, build, and interact. A world consists of all terrain data, structures, player progress, and settings that define the shared experience. Being able to create, rename, reset, or organize worlds is a core part of maintaining a server for both private and public communities. + + + +## New world creation + +Creating a new world gives your server a fresh environment to generate terrain, structures, and gameplay progression from scratch. Using the live console, worlds can be created or switched by issuing the appropriate world-related commands. +When a new world name is specified, the server will either load an existing world with that name or generate a new one if no matching world data is found. + +``` +/world create +``` + +This command creates a new world named ``. If no existing world data is present for that name, the server generates a fresh world environment. + + + +## Set a world as default + +A specific world can be marked as the default world so that it is automatically loaded when the server starts. Setting a default world is useful when multiple worlds exist and one of them should always be used as the primary environment. + +Using the live console, the default world can be updated without manually editing configuration files. Once set, the server will prioritize this world on the next restart. + +``` +/world setdefault +``` + +This command sets the world named `mainworld` as the default world. After restarting the server, this world will be loaded automatically. + + + +## Remove existing world + +In addition to creating and loading worlds, the live console can also be used to remove existing worlds from the server. This is useful when outdated, unused, or test worlds are no longer needed. Removing a world deletes its associated world data from the server. This action is permanent and cannot be undone unless a backup exists. + +``` +/world remove +``` + +This command removes the world named `worldname` from the server. If the world is currently active, it must be unloaded or the server may reject the command depending on the server implementation. + + + +## Conclusion + +Managing worlds through the live console provides a fast and flexible way to control the active environment on a Hytale server. For further questions or assistance, please don't hesitate to contact our support team, which is available daily to assist you! 🙂 From bbf50ab54a9de68fefe07ab333bd8d3dc3e67266 Mon Sep 17 00:00:00 2001 From: fgalz Date: Wed, 14 Jan 2026 14:20:14 +0100 Subject: [PATCH 04/10] New guide: Hytale - Become admin --- docs/hytale-becomeadmin.md | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 docs/hytale-becomeadmin.md diff --git a/docs/hytale-becomeadmin.md b/docs/hytale-becomeadmin.md new file mode 100644 index 000000000..9255f15b3 --- /dev/null +++ b/docs/hytale-becomeadmin.md @@ -0,0 +1,47 @@ +--- +id: hytale-becomeadmin +title: "Hytale: Become an Admin (Operator) on your server" +description: "Discover how to assign administrator permissions for full server control and manage game functions effectively → Learn more now" +sidebar_label: Become admin +services: + - gameserver-hytale +--- + +import InlineVoucher from '@site/src/components/InlineVoucher'; + +## Introduction +Assigning admin permissions on a Hytale server allows trusted players to help manage the server. Admins, also referred to as operators, can execute server commands, manage players, and assist with server moderation. This makes delegation of routine tasks easier for server owners and helps maintain a smooth gameplay experience. + +![img](https://screensaver01.zap-hosting.com/index.php/s/2NnFBkPdsDoBYZj/preview) + + + + + +## Assigning permissions + + + +Admins on a Hytale server are granted operator status, which gives them elevated command permissions. This can be done either through the **server console** or **in-game commands** by an existing operator. To grant operator permissions to a player, enter the following in the server console or in-game with sufficient permissions: + +``` +/op add +``` + + + +## Removing permissions + +If a player no longer requires admin access or should no longer have elevated permissions, their operator status can be removed at any time: + +``` +/op remove +``` + +Once removed, the player will return to standard permission levels and will no longer be able to use admin commands. + + + +## Conclusion + +Becoming an admin on a Hytale server via operator permissions is a core part of server management, enabling trusted players to assist with moderation and administrative tasks. For further questions or assistance, please don't hesitate to contact our support team, which is available daily to assist you! 🙂 From 57767a301b4590c1b7f25464df4f4bdd038ed40b Mon Sep 17 00:00:00 2001 From: fgalz Date: Wed, 14 Jan 2026 15:04:16 +0100 Subject: [PATCH 05/10] New guide: Hytale - Troubleshooting - Slow connection --- .../hytale-troubleshooting-slow-connection.md | 103 ++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 docs/hytale-troubleshooting-slow-connection.md diff --git a/docs/hytale-troubleshooting-slow-connection.md b/docs/hytale-troubleshooting-slow-connection.md new file mode 100644 index 000000000..1751ea4b2 --- /dev/null +++ b/docs/hytale-troubleshooting-slow-connection.md @@ -0,0 +1,103 @@ +--- +id: "hytale-troubleshooting-slow-connection" +title: "Hytale: Slow Connection / World Not Loading" +description: "Troubleshoot slow connections and worlds not loading on Hytale servers → Learn more now" +sidebar_label: Slow Connection / World Not Loading +services: +- gameserver-hytale +--- + +import InlineVoucher from '@site/src/components/InlineVoucher'; + +## Introduction + +When connecting to a Hytale server, issues such as extremely slow connections or worlds that never fully load can be frustrating. +These problems are often assumed to be server-related at first glance. However, in practice, they can originate from both server-side conditions and client-side network behavior. + +In many cases, the server itself is running correctly, while the client struggles to properly establish or maintain the connection required to receive world data. Understanding this distinction is important before attempting further troubleshooting. + + + +## Symptoms + +Affected players usually report that their internet connection appears to be stable and fast in general. Activities such as streaming videos, browsing the web, or downloading files work without any noticeable issues. +Singleplayer worlds in Hytale also load and function normally. + +The issue becomes apparent only when joining a multiplayer server. +Connecting may take an unusually long time, and the world may never finish loading. +In some situations, other players on the server can see the affected player moving, while the affected player is unable to interact with the world. These symptoms have primarily been observed on Windows systems. + +## Background and cause + +While the described behavior can resemble server performance issues, investigations show that a common cause lies on the client side. +Certain network adapters, particularly Intel and Realtek chipsets, have rare driver incompatibilities with the network protocol used by Hytale. + +Hytale relies on the QUIC protocol, which is a modern networking technology. +Not all network drivers fully support this protocol, which can lead to situations where a connection is technically established, but world data is not transmitted correctly. This behavior can occur on both Wi-Fi and Ethernet connections. + +## Verifying the cause + +To determine whether the issue is related to the local system, an external USB Ethernet adapter can be used for testing. +By connecting through this adapter and attempting to join the server again, it becomes possible to isolate the problem. + +If the connection works correctly when using the USB adapter, the issue can be attributed to the original network adapter or its driver configuration. + +## Resolving the issue + +In confirmed cases, adjusting advanced network adapter settings on the client system resolves the problem. +These adjustments focus on disabling certain optimization, power-saving, and offloading features that interfere with modern network protocols. + +Typical changes include disabling Priority and VLAN handling, Receive Segment Coalescing for IPv4 and IPv6, as well as various energy-related features such as Energy-Efficient Ethernet and Green Ethernet. + +If these changes do not resolve the issue, a more extensive configuration can be applied that modifies a wide range of advanced adapter settings. +Due to its invasive nature and the difficulty of reverting all values, this approach should only be used as a last resort. + + +### Disable Priority and VLAN + +In some cases, network prioritization features can interfere with the way Hytale establishes and maintains its connection. Certain network drivers handle Priority and VLAN tagging in a way that is incompatible with modern transport protocols. + +Disabling the Priority and VLAN feature on the affected network adapter has been shown to resolve connection issues where the world fails to load or the connection stalls during join. + +After applying this change, the network connection will briefly reset before becoming available again. The server connection should then be tested to determine whether the issue has been resolved. + +### Disable Receive Segment Coalescing + +Receive Segment Coalescing is a network optimization feature designed to improve performance by combining multiple packets into larger segments. +While generally beneficial, this feature can cause issues with applications that rely on real-time data transmission. + +Disabling Receive Segment Coalescing for both IPv4 and IPv6 can improve compatibility with the QUIC protocol used by Hytale. This adjustment has resolved slow connections and incomplete world loading for many affected systems. + +Once disabled, the network connection should be tested again to verify whether world data now loads correctly. + +### Disable energy and power-saving features + +Many network adapters include aggressive power-saving and energy-efficiency features that can negatively impact connection stability. These features may interrupt or delay network traffic in situations where continuous data flow is required. Disabling options such as Advanced EEE, Energy-Efficient Ethernet, Green Ethernet, ARP Offload, and Flow Control can significantly improve connection reliability. + +This solution is especially relevant for systems where the issue occurs inconsistently or only after some time connected to the server. After applying these changes, the network adapter will operate in a more stable but less power-optimized mode. + + + +### Advanced adapter configuration (last resort) + +If none of the previous solutions resolve the issue, a more comprehensive configuration of the network adapter can be applied. This approach disables a wide range of offloading, optimization, and power-management features while adjusting buffer sizes and queue handling. + +Because these changes significantly alter the adapter’s behavior and may not preserve default values, reverting them can be difficult without reinstalling the network driver. This solution should therefore only be applied as a last resort when all other adjustments have failed. + +It is strongly recommended to document all original adapter settings before applying this configuration. + + + +## Conclusion + +Slow connections and worlds not loading when joining a Hytale server can originate from both server-side and client-side factors. +When server-related issues have been ruled out, client-side network driver incompatibilities are a known cause. + +By adjusting specific network adapter settings, affected players can restore proper connectivity and successfully load multiplayer worlds without requiring any changes to the server itself. + +For further questions or assistance, please don't hesitate to contact our support team, which is available daily to assist you! 🙂 + + + + + From 1005239169b1b68b7b25419f22e51cc9c5ecae06 Mon Sep 17 00:00:00 2001 From: fgalz Date: Wed, 14 Jan 2026 15:04:39 +0100 Subject: [PATCH 06/10] New guide: Hytale - Permissions --- docs/hytale-permissions.md | 140 +++++++++++++++++++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 docs/hytale-permissions.md diff --git a/docs/hytale-permissions.md b/docs/hytale-permissions.md new file mode 100644 index 000000000..a503e33e1 --- /dev/null +++ b/docs/hytale-permissions.md @@ -0,0 +1,140 @@ +--- +id: "hytale-permissions" +title: "Hytale: Managing User and Group Permissions" +description: "Manage user and group permissions on your Hytale server → Learn more now" +sidebar_label: Slow Connection / World Not Loading +services: +- gameserver-hytale +--- + +import InlineVoucher from '@site/src/components/InlineVoucher'; + + + +## Introduction + +Managing permissions on a Hytale server allows you to control what players can and cannot do. This includes assigning different levels of access to trusted players, moderators, and administrators. Setting up permissions correctly is essential for maintaining a balanced and secure server environment where players can enjoy the game without unintended exploits or abuses. + +Hytale’s server software supports hierarchical permission levels that determine which commands and actions each player can execute. These can be managed via the live console or through configuration settings depending on your server setup. + + + + + +## Permission levels overview + +Permissions define what actions a player is allowed to take on the server. At the most basic level, normal players have only standard gameplay permissions, such as moving, interacting with the world, and chatting. Higher permission tiers such as operator or admin status grant access to server commands that affect gameplay, other players, server configuration, and moderation tools. + +The permission system consists of two main components: + +- **User permissions** which apply directly to a specific player +- **Group permissions** which allow permissions to be bundled and assigned to multiple players at once + +Each player is identified internally by a UUID, which is required when managing permissions via commands. + + + +## Managing user permissions + +User permissions allow you to grant or revoke specific permissions for a single player. + +### View user permissions + +To display all permissions assigned directly to a user. This command shows every permission currently applied to the specified user. + +``` +/perm user list +``` + + + +### Add permissions to a user + +To grant one or more permissions directly to a user. The specified permissions will be added immediately and take effect without requiring a server restart. + +``` +/perm user add +``` + + + +### Remove permissions from a user + +To revoke permissions from a user. This removes only the specified permissions while leaving all other permissions unchanged. + +``` +/perm user remove +``` + + + +## Managing user group assignments + +In addition to direct permissions, users can inherit permissions through groups. + +### View user group permissions + +This command shows which permission groups the user is currently a member of. + +``` +/perm user group list +``` + + + +### Add a user to a group + +To assign a user to a permission group. Once added, the user inherits all permissions defined for that group. + +``` +/perm user group add +``` + + + +### Remove a user from a group + +To remove a user from a permission group. After removal, the user will no longer receive permissions from that group. + +``` +/perm user group remove +``` + + + +## Managing group permissions + +Groups allow permissions to be managed centrally and reused across multiple users. + +### View group permissions + +To display all permissions assigned to a group. This command provides an overview of every permission associated with the specified group. + +``` +/perm group list +``` + + + +### Add permissions to a group + +To add one or more permissions to a group. All users assigned to this group will immediately inherit the new permissions. + +``` +/perm group add +``` + + + +### Remove permissions from a group + +This removes only the specified permissions from the group without affecting other permissions. + +``` +/perm group remove +``` + + + + + From 639d92b29c096fb2113977e2d26899110befc403 Mon Sep 17 00:00:00 2001 From: fgalz Date: Wed, 14 Jan 2026 16:00:40 +0100 Subject: [PATCH 07/10] Tweak: Added Early Access Notice --- docs/hytale-becomeadmin.md | 6 ++++++ docs/hytale-firststeps-connect.md | 7 +++---- docs/hytale-firststeps-dashboard.md | 6 ++---- docs/hytale-gamemode.md | 6 ++++++ docs/hytale-mods.md | 6 +++--- docs/hytale-permissions.md | 6 ++++++ docs/hytale-troubleshooting-common-issues.md | 7 +++---- docs/hytale-troubleshooting-slow-connection.md | 6 ++++++ docs/hytale-whitelist.md | 6 ++++++ docs/hytale-world-management.md | 4 ++++ 10 files changed, 45 insertions(+), 15 deletions(-) diff --git a/docs/hytale-becomeadmin.md b/docs/hytale-becomeadmin.md index 9255f15b3..4b76881fc 100644 --- a/docs/hytale-becomeadmin.md +++ b/docs/hytale-becomeadmin.md @@ -12,6 +12,12 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ## Introduction Assigning admin permissions on a Hytale server allows trusted players to help manage the server. Admins, also referred to as operators, can execute server commands, manage players, and assist with server moderation. This makes delegation of routine tasks easier for server owners and helps maintain a smooth gameplay experience. +:::info Early Access Notice + +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. + +::: + ![img](https://screensaver01.zap-hosting.com/index.php/s/2NnFBkPdsDoBYZj/preview) diff --git a/docs/hytale-firststeps-connect.md b/docs/hytale-firststeps-connect.md index 5d8378df7..4282f7596 100644 --- a/docs/hytale-firststeps-connect.md +++ b/docs/hytale-firststeps-connect.md @@ -15,12 +15,11 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ## Introduction Not sure how to connect to your **Hytale** server or what you need to get started? No worries, we’ve got you covered! We will walk you through everything you need. From the required tools and information to the actual connection process, along with key considerations to ensure a smooth and trouble-free connection experience. Follow our guide and you'll be connected in no time! -:::info -Hytale is scheduled to release on January 13th, 2026. Since official server files, modding tools, and installation workflows may still change in the early post launch phase, parts of this guide might become outdated. +:::info Early Access Notice -The page will be updated as soon as confirmed and stable information about mod support, file formats and setup requirements is available -::: +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. +::: diff --git a/docs/hytale-firststeps-dashboard.md b/docs/hytale-firststeps-dashboard.md index 474772109..5f6ca49f2 100644 --- a/docs/hytale-firststeps-dashboard.md +++ b/docs/hytale-firststeps-dashboard.md @@ -18,11 +18,9 @@ After going through this guide, you will easily be able to manage your server ef -:::info +:::info Early Access Notice -Hytale is scheduled to release on January 13th, 2026. Since official server files, modding tools, and installation workflows may still change in the early post launch phase, parts of this guide might become outdated. - -The page will be updated as soon as confirmed and stable information about mod support, file formats and setup requirements is available +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. ::: diff --git a/docs/hytale-gamemode.md b/docs/hytale-gamemode.md index c07688749..5273dd179 100644 --- a/docs/hytale-gamemode.md +++ b/docs/hytale-gamemode.md @@ -14,6 +14,12 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; Hytale servers allow you to configure gameplay settings such as the game mode that defines the player experience. Changing the game mode lets you tailor your server to a specific playstyle or community preference. +:::info Early Access Notice + +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. + +::: + ![img](https://screensaver01.zap-hosting.com/index.php/s/KsesqALHY3AgKHF/preview) diff --git a/docs/hytale-mods.md b/docs/hytale-mods.md index 3723b4fe5..d1ef5919e 100644 --- a/docs/hytale-mods.md +++ b/docs/hytale-mods.md @@ -19,10 +19,10 @@ Mods turn your Hytale server into something truly your own. They can add new mec Whether you want faster progression, deeper survival elements, more building options, custom events, or unique server rules, mods give you the tools to shape the experience and set your world apart. -:::info -Hytale is scheduled to release on January 13th, 2026. Since official server files, modding tools, and installation workflows may still change in the early post launch phase, parts of this guide might become outdated. +:::info Early Access Notice + +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. -The page will be updated as soon as confirmed and stable information about mod support, file formats and setup requirements is available ::: diff --git a/docs/hytale-permissions.md b/docs/hytale-permissions.md index a503e33e1..87e64861a 100644 --- a/docs/hytale-permissions.md +++ b/docs/hytale-permissions.md @@ -17,6 +17,12 @@ Managing permissions on a Hytale server allows you to control what players can a Hytale’s server software supports hierarchical permission levels that determine which commands and actions each player can execute. These can be managed via the live console or through configuration settings depending on your server setup. +:::info Early Access Notice + +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. + +::: + diff --git a/docs/hytale-troubleshooting-common-issues.md b/docs/hytale-troubleshooting-common-issues.md index a7e2fc667..099148419 100644 --- a/docs/hytale-troubleshooting-common-issues.md +++ b/docs/hytale-troubleshooting-common-issues.md @@ -16,12 +16,11 @@ Setting up and running your own Hytale game server can be an exciting and a lot To make sure you spend less time fixing and more time enjoying your server, this section highlights the most common issues server owners face and provides solutions to help you resolve them quickly and effectively. -:::info -Hytale is scheduled to release on January 13th, 2026. Since official server files, modding tools, and installation workflows may still change in the early post launch phase, parts of this guide might become outdated. +:::info Early Access Notice -The page will be updated as soon as confirmed and stable information about mod support, file formats and setup requirements is available -::: +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. +::: diff --git a/docs/hytale-troubleshooting-slow-connection.md b/docs/hytale-troubleshooting-slow-connection.md index 1751ea4b2..3b7bbe05f 100644 --- a/docs/hytale-troubleshooting-slow-connection.md +++ b/docs/hytale-troubleshooting-slow-connection.md @@ -16,6 +16,12 @@ These problems are often assumed to be server-related at first glance. However, In many cases, the server itself is running correctly, while the client struggles to properly establish or maintain the connection required to receive world data. Understanding this distinction is important before attempting further troubleshooting. +:::info Early Access Notice + +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. + +::: + ## Symptoms diff --git a/docs/hytale-whitelist.md b/docs/hytale-whitelist.md index 9f469ceb9..181eaa0e6 100644 --- a/docs/hytale-whitelist.md +++ b/docs/hytale-whitelist.md @@ -13,6 +13,12 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ## Introduction The whitelist is a security and access control feature that allows you to limit who can join your Hytale server. When enabled, only players that are explicitly listed on the whitelist are permitted to connect. This is especially useful for private servers, community servers, development environments, or testing phases where access should be restricted to trusted players only. +:::info Early Access Notice + +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. + +::: + ![img](https://screensaver01.zap-hosting.com/index.php/s/mMjZWsYdmbnwQkQ/preview) diff --git a/docs/hytale-world-management.md b/docs/hytale-world-management.md index 267c0ca1b..a2279e841 100644 --- a/docs/hytale-world-management.md +++ b/docs/hytale-world-management.md @@ -14,7 +14,11 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; World management on a Hytale server involves controlling the persistent game environment in which players explore, build, and interact. A world consists of all terrain data, structures, player progress, and settings that define the shared experience. Being able to create, rename, reset, or organize worlds is a core part of maintaining a server for both private and public communities. +:::info Early Access Notice +Hytale released on January 13th, 2026 and is currently available in Early Access. As the game is still in an active development phase, server software, configuration files, modding support, and installation workflows may continue to change over time. + +::: ## New world creation From 57559a1ef48303d47b8fe8066aea482aea690946 Mon Sep 17 00:00:00 2001 From: fgalz Date: Wed, 14 Jan 2026 16:01:22 +0100 Subject: [PATCH 08/10] Tweak: Hytale - Mods Added the 200 most popular mods available for Hytale to the mods list --- data/lists/hytale-mods.json | 2068 ++++++++++++++++++++++++++++++++++- 1 file changed, 2067 insertions(+), 1 deletion(-) diff --git a/data/lists/hytale-mods.json b/data/lists/hytale-mods.json index c44dc44f3..a3ceb4095 100644 --- a/data/lists/hytale-mods.json +++ b/data/lists/hytale-mods.json @@ -1,3 +1,2069 @@ [ - + { + "title": "Advanced Item Info", + "description": "Adds a searchable GUI that displays all the items and the game and displays extra properties they have", + "tags": [ + "Miscellaneous", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/advanced-item-info", + "category": "Miscellaneous" + }, + { + "title": "Pixel Paintings", + "description": "Adds a wide range of new paintings from talented artists to Hytale!", + "tags": [ + "Furniture" + ], + "link": "https://www.curseforge.com/hytale/mods/pixel-paintings", + "category": "Furniture" + }, + { + "title": "Lucky Mining", + "description": "Get more ores from mining, the more you mine in a row, the more ores you get.", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/lucky-mining", + "category": "Gameplay" + }, + { + "title": "Shimmer Shrubs", + "description": "Farm resources using magic berry bushes!", + "tags": [ + "Food\\Farming", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/shimmer-shrubs", + "category": "Food\\Farming" + }, + { + "title": "Vector Runes", + "description": "Blocks that push mobs around!", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/vector-runes", + "category": "Utility" + }, + { + "title": "Ymmersive Statues", + "description": "Adds craftable statues of monsters, animals, and bosses in various materials.", + "tags": [ + "Furniture", + "Furniture", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/ymmersive-statues", + "category": "Furniture" + }, + { + "title": "Books and Papers", + "description": "Various writable books, a mail system, and hidden lore across the world.", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/books-and-papers", + "category": "Gameplay" + }, + { + "title": "Wayback Charm", + "description": "A charm to help you find your way back home.", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/wayback-charm", + "category": "Utility" + }, + { + "title": "Ymmersive Foliage", + "description": "An overhaul of foliage density and color", + "tags": [ + "Miscellaneous", + "Quality of Life", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/ymmersive-foliage", + "category": "Miscellaneous" + }, + { + "title": "Ymmersive Masonry", + "description": "Many masonry and stonework variants", + "tags": [ + "Furniture", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/ymmersive-masonry", + "category": "Furniture" + }, + { + "title": "Violet's Furnishings", + "description": "Expands on Hytale's existing furniture library", + "tags": [ + "Furniture" + ], + "link": "https://www.curseforge.com/hytale/mods/violets-furnishings", + "category": "Furniture" + }, + { + "title": "Ymmersive Melodies", + "description": "Upload and play MIDI files in-game on various instruments to annoy your friends with custom melodies!", + "tags": [ + "Miscellaneous", + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/ymmersive-melodies", + "category": "Miscellaneous" + }, + { + "title": "Overstacked", + "description": "Increases the maximum stack size of items.", + "tags": [ + "Quality of Life", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/overstacked", + "category": "Quality of Life" + }, + { + "title": "Cobble Generators", + "description": "Machines that passively generate cobblestone over time!", + "tags": [ + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/cobble-generators", + "category": "Gameplay" + }, + { + "title": "Hybrid", + "description": "🏛️ A Hytale mod library that contains common code for all of Serilum's mods.", + "tags": [ + "Utility", + "Library" + ], + "link": "https://www.curseforge.com/hytale/mods/hybrid", + "category": "Utility" + }, + { + "title": "AdminUI", + "description": "Manage your server with multiple interactive GUIs. Using and interface is much better than commands.", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/adminui", + "category": "Quality of Life" + }, + { + "title": "Hyxin", + "description": "Brings the Mixin trait/mixin framework for Java to Hytale!", + "tags": [ + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/hyxin", + "category": "Gameplay" + }, + { + "title": "Spellbook", + "description": "Powering your favorite mods with clean, reusable helpers and utilities. ", + "tags": [ + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/spellbook", + "category": "Gameplay" + }, + { + "title": "Soulstones", + "description": "Harness the power of souls!", + "tags": [ + "Mobs\\Characters", + "Miscellaneous", + "Food\\Farming" + ], + "link": "https://www.curseforge.com/hytale/mods/soulstones", + "category": "Mobs\\Characters" + }, + { + "title": "Ymmersive Carpentry", + "description": "Many wooden pattern and floor variants", + "tags": [ + "Furniture", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/ymmersive-carpentry", + "category": "Furniture" + }, + { + "title": "AutoHammer", + "description": "Randomize blocks on placement for faster building", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/autohammer", + "category": "Quality of Life" + }, + { + "title": "[NoCube's] Undead Warriors", + "description": "Adds enemy skeletons with random equipment.", + "tags": [ + "Mobs\\Characters", + "Mobs\\Characters", + "Miscellaneous", + "Miscellaneous", + "Gameplay", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/nocubes-undead-warriors", + "category": "Mobs\\Characters" + }, + { + "title": "Welcome Message", + "description": "💬 Sends players joining the server a configurable Message of the Day!", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/welcome-message", + "category": "Utility" + }, + { + "title": "Macaw's Hy Carpets", + "description": "Adds carpets! Currently in 3 sizes and a block variant.", + "tags": [ + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/macaws-hy-carpets", + "category": "Blocks" + }, + { + "title": "The Pickaxes Place Torches", + "description": "Makes all pickaxes place torches by right clicking when having torches selected in the utility slot", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/the-pickaxes-place-torches", + "category": "Gameplay" + }, + { + "title": "Macaw's Hy Paintings", + "description": "Adds over 90 hand drawn paintings which can be cycled!", + "tags": [ + "Furniture", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/macaws-hy-paintings", + "category": "Furniture" + }, + { + "title": "[NoCube's] Neon Blocks", + "description": "Solid-color blocks that glow in the dark! Good for illuminating buildings or using as a green-screen.", + "tags": [ + "Miscellaneous", + "Furniture", + "Quality of Life", + "Utility", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/nocubes-neon-blocks-hytale", + "category": "Miscellaneous" + }, + { + "title": "YUNG's HyDungeons", + "description": "Adds new procedurally generated dungeon instances!", + "tags": [ + "World Gen", + "Gameplay", + "Prefab" + ], + "link": "https://www.curseforge.com/hytale/mods/yungs-hydungeons", + "category": "World Gen" + }, + { + "title": "MultipleHUD", + "description": "A simple mod that allows you to have multiple HUDs present at once.", + "tags": [ + "Library", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/multiplehud", + "category": "Library" + }, + { + "title": "Infinite Mana", + "description": "♾️ All players in the server have infinite mana and can use spells endlessly.", + "tags": [ + "Gameplay", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/infinite-mana", + "category": "Gameplay" + }, + { + "title": "Violet's Music Players", + "description": "Adds interactive music players & music tracks composed by a variety of artists!", + "tags": [ + "Furniture", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/violets-music-players", + "category": "Furniture" + }, + { + "title": "'Dustrial Decor", + "description": "Adds a bunch of metallic building blocks to the game!", + "tags": [ + "Furniture" + ], + "link": "https://www.curseforge.com/hytale/mods/dustrial-decor", + "category": "Furniture" + }, + { + "title": "Aspect", + "description": "Shared library for all of Up's Hytale mods", + "tags": [ + "Library" + ], + "link": "https://www.curseforge.com/hytale/mods/aspect", + "category": "Library" + }, + { + "title": "Violet's Plushies", + "description": "Adds several plushies, some with unique SFX!", + "tags": [ + "Furniture" + ], + "link": "https://www.curseforge.com/hytale/mods/violets-plushies", + "category": "Furniture" + }, + { + "title": "[NoCube's] Tavern", + "description": "Adds hops, brewing, and new decorations! Hytale style.", + "tags": [ + "Food\\Farming", + "Furniture", + "Quality of Life", + "Utility", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/nocubes-tavern-hytale", + "category": "Food\\Farming" + }, + { + "title": "SchematicImporter", + "description": "A simple and powerful Hytale mod that conveniently converts your .litematic and .schem files to Hytale builds. Allows selecting custom mappings from MC to Hytale Blocks", + "tags": [ + "Quality of Life", + "Utility", + "Blocks", + "Prefab", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/schematicimporter", + "category": "Quality of Life" + }, + { + "title": "Simply Trash", + "description": "Adds a trash can to easily destroy items!", + "tags": [ + "Blocks", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/simply-trash", + "category": "Blocks" + }, + { + "title": "Economy", + "description": "An economy system for Hytale that adds player wallets, balance checking, and secure money transfers.", + "tags": [ + "Miscellaneous", + "Gameplay", + "Library", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/economy", + "category": "Miscellaneous" + }, + { + "title": "Disabled Durability", + "description": "❌ Disables durability on all breakable tools, weapons and armour.", + "tags": [ + "Miscellaneous", + "Miscellaneous", + "Gameplay", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/disabled-durability", + "category": "Miscellaneous" + }, + { + "title": "Ore Crusher", + "description": "Adds a Crusher to turn ores into powders", + "tags": [ + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/ore-crusher", + "category": "Gameplay" + }, + { + "title": "Aures - Horse Skins", + "description": "Adds a random variations for horses! Also slightly changes the model and animations of horses.", + "tags": [ + "Mobs\\Characters", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/aures-horse-skins", + "category": "Mobs\\Characters" + }, + { + "title": "Thorium Furnaces", + "description": "Faster Furnaces!", + "tags": [ + "Gameplay", + "Blocks", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/thorium-furnaces", + "category": "Gameplay" + }, + { + "title": "Daily Dad", + "description": "A dad joke whenever you log in to a server", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/daily-dad", + "category": "Quality of Life" + }, + { + "title": "First Join Message", + "description": "💬 Sends a configurable message to players when they first join a world.", + "tags": [ + "Utility", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/first-join-message", + "category": "Utility" + }, + { + "title": "Macaw's Hy Furniture", + "description": "Adds Storage Wardrobes, Drawers, Tables, Desks, Chairs..!", + "tags": [ + "Furniture", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/macaws-hy-furniture", + "category": "Furniture" + }, + { + "title": "Chat History", + "description": "📜 Saves chat history per-player on the server, and sends those on login!", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/chat-history", + "category": "Quality of Life" + }, + { + "title": "Eldritch Tales", + "description": "Eerie Lovecraftian Biomes & Monsters. ", + "tags": [ + "World Gen", + "Mobs\\Characters", + "Gameplay", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/eldritch-tales", + "category": "World Gen" + }, + { + "title": "DiscordBridge", + "description": "Link your Hytale ingame chat to a Discord channel", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/discord-bridge", + "category": "Quality of Life" + }, + { + "title": "[NoCube's] Cultivation", + "description": "Make farming more comfortable than ever before!", + "tags": [ + "Food\\Farming", + "Food\\Farming", + "Quality of Life", + "Utility", + "Utility", + "Miscellaneous", + "Miscellaneous", + "Gameplay", + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/nocubes-cultivation-hytale", + "category": "Food\\Farming" + }, + { + "title": "Macaw's Hy Paths", + "description": "Adds Paths, Pavings, Blocks, Slabs and Stairs..!", + "tags": [ + "Miscellaneous", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/macaws-hy-paths", + "category": "Miscellaneous" + }, + { + "title": "Macaw's Hy Lights and Lamps", + "description": "Adds Lamps, Tiki Torches, Candle Holders, Ceiling Lights, Street Lights and more...!", + "tags": [ + "Blocks", + "Furniture" + ], + "link": "https://www.curseforge.com/hytale/mods/macaws-hy-lights-and-lamps", + "category": "Blocks" + }, + { + "title": "Durability Notifier", + "description": "Durability Notifier is a mod that notifies you when your tool hits a configured percentage of durability.", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/durability-notifier", + "category": "Quality of Life" + }, + { + "title": "[NoCube's] Simple Bags", + "description": "Adds bags that you can put anything in!", + "tags": [ + "Miscellaneous", + "Miscellaneous", + "Gameplay", + "Gameplay", + "Quality of Life", + "Utility", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/nocubes-bags", + "category": "Miscellaneous" + }, + { + "title": "Starter Kit", + "description": "📦 Gives players joining the world for the first time configurable starter gear.", + "tags": [ + "Utility", + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/starter-kit", + "category": "Utility" + }, + { + "title": "Violet's Wardrobe", + "description": "Adds more customisation options in the form of craftable cosmetics", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/violets-wardrobe", + "category": "Quality of Life" + }, + { + "title": "One Handed Lanterns", + "description": "Makes lanterns one handed and equippable in the off hand slot.", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/one-handed-lanterns", + "category": "Gameplay" + }, + { + "title": "Item Magnet", + "description": "Adds a magnet that attracts items towards the player.", + "tags": [ + "Quality of Life", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/item-magnet", + "category": "Quality of Life" + }, + { + "title": "Restored Ruins", + "description": "Adds prefabs inspired by the ruins in the game", + "tags": [ + "Prefab", + "World Gen" + ], + "link": "https://www.curseforge.com/hytale/mods/restored-ruins", + "category": "Prefab" + }, + { + "title": "Landmark", + "description": "Server Waypoints that unlock quicktravel locations and explorable points of interest", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/landmark", + "category": "Gameplay" + }, + { + "title": "Ore Harvester", + "description": "⛏️ Allows breaking entire ore veins instantly by crouching.", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/ore-harvester", + "category": "Gameplay" + }, + { + "title": "Where this at?", + "description": "Easily find items in all of your chests and get them into your inventory without needing to search 50 chests", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/where-this-at", + "category": "Gameplay" + }, + { + "title": "EyeSpy", + "description": "Adds a HUD that displays information about what you're looking at!", + "tags": [ + "Miscellaneous", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/eyespy", + "category": "Miscellaneous" + }, + { + "title": "Cycle Paintings", + "description": "🖼️ Easily cycle through painting variants from all mods!", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/cycle-paintings", + "category": "Quality of Life" + }, + { + "title": "Not Enough Poops", + "description": "If the classic poop is just not enough.", + "tags": [ + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/not-enough-poops", + "category": "Miscellaneous" + }, + { + "title": "Miners Helmet", + "description": "Adds a helmet that provides a light source around the player", + "tags": [ + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/miners-helmet", + "category": "Gameplay" + }, + { + "title": "Tree Harvester", + "description": "🌲 Cut down trees quickly, including roots. Fill in root holes, replace sapling.", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/tree-harvester", + "category": "Gameplay" + }, + { + "title": "Recipe Wisdom", + "description": "📃 Teaches new players all available recipes when logging into a server.", + "tags": [ + "Miscellaneous", + "Gameplay", + "Quality of Life", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/recipe-wisdom", + "category": "Miscellaneous" + }, + { + "title": "Macaw's Hy Windows", + "description": "Adds openable Windows, Blinds, Curtains, Shutters, Glass..", + "tags": [ + "Furniture", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/macaws-hy-windows", + "category": "Furniture" + }, + { + "title": "[NoCube's] Orchard", + "description": "New fruit trees, workstations & artisan products!", + "tags": [ + "Miscellaneous", + "Food\\Farming", + "Quality of Life", + "Utility", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/nocubes-orchard-hytale", + "category": "Miscellaneous" + }, + { + "title": "Macaw's Hy Doors", + "description": "Adds more doors to fit in your builds!", + "tags": [ + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/macaws-hy-doors", + "category": "Blocks" + }, + { + "title": "Infinite Stamina", + "description": "♾️ Gives all players in the server an endless supply of stamina.", + "tags": [ + "Gameplay", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/infinite-stamina", + "category": "Gameplay" + }, + { + "title": "Skyblock by Cinderstone Studios", + "description": "Hop through multiple islands in Cinderstone Studios' take on Skyblock for Hytale!", + "tags": [ + "Adventure", + "Survival" + ], + "link": "https://www.curseforge.com/hytale/worlds/skyblock", + "category": "Adventure" + }, + { + "title": "Quick Crafting", + "description": "Allows you to change the crafting time of recipes!", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/quick-crafting", + "category": "Quality of Life" + }, + { + "title": "[NoCube's] Bakehouse", + "description": "Grinding flour, baking bread in the oven, and making pastries!", + "tags": [ + "Food\\Farming", + "Furniture", + "Quality of Life", + "Utility", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/nocubes-bakehouse-hytale", + "category": "Food\\Farming" + }, + { + "title": "Tales of Borders & Nations", + "description": "A simple world protection plugin/mod, whether for a large server or small friend group.", + "tags": [ + "Miscellaneous", + "Gameplay", + "Utility", + "Library" + ], + "link": "https://www.curseforge.com/hytale/mods/borders-and-nations", + "category": "Miscellaneous" + }, + { + "title": "LevelingCore", + "description": "A modern, flexible leveling system for Hytale", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/levelingcore", + "category": "Gameplay" + }, + { + "title": "HYKEA", + "description": "Add some furniture from far away lands", + "tags": [ + "Furniture" + ], + "link": "https://www.curseforge.com/hytale/mods/hykea", + "category": "Furniture" + }, + { + "title": "MOTD", + "description": "Adds a message of the day when joining a world/server", + "tags": [ + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/motd", + "category": "Miscellaneous" + }, + { + "title": "Thorium Chests", + "description": "Bigger chests!", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/thorium-chests", + "category": "Gameplay" + }, + { + "title": "Better Modlist", + "description": "Adds a better modlist to the game, with improved features like searching and logos.", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/better-modlist", + "category": "Utility" + }, + { + "title": "Gone Fishing", + "description": "Adds fishing to Hytale", + "tags": [ + "Gameplay", + "Food\\Farming" + ], + "link": "https://www.curseforge.com/hytale/mods/gone-fishing", + "category": "Gameplay" + }, + { + "title": "Aures Paintings with Dragons", + "description": "Paintings with dragons by Black Aures in your world! ", + "tags": [ + "Blocks", + "Miscellaneous", + "Furniture" + ], + "link": "https://www.curseforge.com/hytale/mods/aures-paintings-with-dragons", + "category": "Blocks" + }, + { + "title": "[NoCube's] Culinary", + "description": "Adds new foods", + "tags": [ + "Food\\Farming" + ], + "link": "https://www.curseforge.com/hytale/mods/nocubes-culinary-hytale", + "category": "Food\\Farming" + }, + { + "title": "Macaw's Hy Stairs", + "description": "Adds Stairs with Handrails, and Balcony Railings!", + "tags": [ + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/macaws-hy-stairs", + "category": "Blocks" + }, + { + "title": "Simple Claims", + "description": "Adds a chunk claim and protection system.", + "tags": [ + "Gameplay", + "Utility", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/simple-claims", + "category": "Gameplay" + }, + { + "title": "[NoCube's] Resource Bags", + "description": "Carry more items in special bags & think less about inventory management!", + "tags": [ + "Miscellaneous", + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/nocubes-resource-bags", + "category": "Miscellaneous" + }, + { + "title": "Werchat", + "description": "A fully featured chat channel system for Hytale servers. Organize player communication with customizable channels, private messaging, and moderation tools.", + "tags": [ + "Miscellaneous", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/werchat", + "category": "Miscellaneous" + }, + { + "title": "WelcomeTale", + "description": "A Hytale server plugin that disables the default join message broadcast and displays custom welcome messages when players join your server.", + "tags": [ + "Utility", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/welcometale", + "category": "Utility" + }, + { + "title": "Votifier", + "description": "A Votifier-style plugin for Hytale that receives vote notifications from voting websites via webserver and fires events for other plugins to handle rewards.", + "tags": [ + "Miscellaneous", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/votifier", + "category": "Miscellaneous" + }, + { + "title": "VoteListener", + "description": "A vote reward plugin for Hytale servers. Listens for votes from HytaleVotifier and rewards players with configurable commands.", + "tags": [ + "Miscellaneous", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/votelistener", + "category": "Miscellaneous" + }, + { + "title": "VeinMining", + "description": "Instantly mine connected ores and blocks by holding the Walk key (LEFT ALT) while breaking a single block.", + "tags": [ + "Miscellaneous", + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/veinmining", + "category": "Miscellaneous" + }, + { + "title": "Ultimate Veinminer", + "description": "Mine entire veins of ores at once!", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/ultimate-veinminer", + "category": "Gameplay" + }, + { + "title": "Traxel's Berserk", + "description": "A mod that brings Berserk's vision into Hytale with your favorite weapons. We are open to suggestions. W.I.P", + "tags": [ + "Gameplay", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/traxels-berserk", + "category": "Gameplay" + }, + { + "title": "Timers-B-Gone!", + "description": "Removes all timers from the current list of craftable items!", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/timers-b-gone", + "category": "Gameplay" + }, + { + "title": "TickSpeed", + "description": "Quickly modify the in-game tickspeed with a command.", + "tags": [ + "Miscellaneous", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/tickspeed", + "category": "Miscellaneous" + }, + { + "title": "Throwable Explosives", + "description": "Hytale mod adding 3 throwable and craftable explosives - The Explosive Bomb, Dynamite Stick and Nuclear Grenade, each dealing damage to blocks and entities", + "tags": [ + "Miscellaneous", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/throwable-explosives", + "category": "Miscellaneous" + }, + { + "title": "Telegram Chain", + "description": "Two-way integration with Telegram", + "tags": [ + "Utility", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/telegram-chain", + "category": "Utility" + }, + { + "title": "Storage Range Override", + "description": "Overrides the range of storage blocks for benches.", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/storage-range-override", + "category": "Gameplay" + }, + { + "title": "SouzaPlot", + "description": "SouzaPlot brings the classic PlotMe/PlotSquared experience to Hytale. Create a dedicated plot world where players can claim their own land, build freely, and protect their creations from others", + "tags": [ + "Miscellaneous", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/souzaplot", + "category": "Miscellaneous" + }, + { + "title": "Sound Control Panel", + "description": "Allows individual control over every sound in Hytale.", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/sound-control-panel", + "category": "Gameplay" + }, + { + "title": "Smart Targeting - PVP Fix", + "description": "Smart Targeting prevents players from hitting mobs and other players at the same time, which made fighting the same the enemy with PVP on unbareable.", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/smart-targeting-pvp-fix", + "category": "Gameplay" + }, + { + "title": "Small village", + "description": "Small survival starter village", + "tags": [ + "Adventure" + ], + "link": "https://www.curseforge.com/hytale/worlds/small-village", + "category": "Adventure" + }, + { + "title": "Sleepy", + "description": "Modifies sleep behavior to allow sleeping when at least 50% of players are in bed", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/sleepy", + "category": "Gameplay" + }, + { + "title": "Sleep Regeneration", + "description": "Regenerate full life when you sleep.", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/sleep-regeneration", + "category": "Quality of Life" + }, + { + "title": "Sleep Percentage - Set Players Needed To Sleep", + "description": "Set the percentage of players that must be in bed for night to pass", + "tags": [ + "Quality of Life", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/sleep-percentage-set-players-needed-to-sleep", + "category": "Quality of Life" + }, + { + "title": "Sleep Percentage", + "description": "Allows night to be skipped when a percentage of players are sleeping instead of requiring all players to be asleep", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/sleep-percentage", + "category": "Quality of Life" + }, + { + "title": "Simple Starter Kit", + "description": "Spawn with a some starter food and gear to get straight into Hytale!", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/simple-starter-kit", + "category": "Quality of Life" + }, + { + "title": "Simple Spawn Protection", + "description": "Adds a 100 block radius spawn protection with perms for OP.", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/simple-spawn-protection", + "category": "Utility" + }, + { + "title": "Simple Glass Block", + "description": "A simple block of glass", + "tags": [ + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/simple-glass", + "category": "Blocks" + }, + { + "title": "Shovel Digs One Block", + "description": "Change shovel mechanic to dig only 1 block instead of multiples. Adjust Digging speed and durability. Add Crude Shovel crafting recipe", + "tags": [ + "Quality of Life", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/shovel-digs-one-block", + "category": "Quality of Life" + }, + { + "title": "Shared Structures", + "description": "Allows asset packs to generate structures in existing zones and biomes", + "tags": [ + "World Gen", + "Utility", + "Library", + "Prefab" + ], + "link": "https://www.curseforge.com/hytale/mods/shared-structures", + "category": "World Gen" + }, + { + "title": "Server Utils - TPA", + "description": "Adds the /tpa and /tpaccept. I will also be adding more utility commands into this mod so it adds a lot of QOL commands for players to enjoy!", + "tags": [ + "Quality of Life", + "Miscellaneous", + "Gameplay", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/server-utils-tpa", + "category": "Quality of Life" + }, + { + "title": "Server Plugin | OPMarker | Simple OP chat prefix for server operators", + "description": "Mark Operator players as [OP] playerName: {message}", + "tags": [ + "Miscellaneous", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/server-plugin-opmarker-simple-op-chat-prefix-for", + "category": "Miscellaneous" + }, + { + "title": "Secret Chests - Core Addition", + "description": "Functional hidden chests disguised as regular building blocks.", + "tags": [ + "Furniture", + "Miscellaneous", + "Quality of Life", + "Utility", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/secret-chests-core-addition", + "category": "Furniture" + }, + { + "title": "Scaled Sleep 25% Of Players", + "description": "Scaled Sleep lets a configurable percentage of players sleeping skip the night on a Hytale server, scaling with online player count", + "tags": [ + "Quality of Life", + "Utility", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/scaled-sleep", + "category": "Quality of Life" + }, + { + "title": "Saplings on Logs", + "description": "Allow saplings to be place on logs, allowing you to replant saplings without clearing the wood below ground", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/saplings-on-logs", + "category": "Quality of Life" + }, + { + "title": "Saplings From Trees", + "description": "Makes some saplings drop from their respective trees", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/saplings-from-trees", + "category": "Quality of Life" + }, + { + "title": "Random Teleport", + "description": "The Random Teleport plugin for Hytale is a utility designed to enhance world exploration by instantly transporting players to uncharted locations across the map.", + "tags": [ + "Miscellaneous", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/random-teleport", + "category": "Miscellaneous" + }, + { + "title": "Private Messaging", + "description": "Simple commands allowing users to privately message each other on Hytale", + "tags": [ + "Utility", + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/private-messaging", + "category": "Utility" + }, + { + "title": "Perfect Parries", + "description": "Adds a souls-like/RPG combat mechanic where if you block at the instant where you are supposed to take damage, you don't lose stamina and deflect some damage back.", + "tags": [ + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/perfect-parries", + "category": "Gameplay" + }, + { + "title": "Party System", + "description": "A simple party system that you can create and invite your friends to adventure the universe and dont hit each other", + "tags": [ + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/party-system", + "category": "Gameplay" + }, + { + "title": "Parkour Trials - One Step", + "description": "A challenging parkour course exploring Hytale's movement mechanics.", + "tags": [ + "Parkour" + ], + "link": "https://www.curseforge.com/hytale/worlds/parkour-trials-one-step", + "category": "Parkour" + }, + { + "title": "OP Pickaxe", + "description": "This mod adds an overpowered wooden pickaxe to the game.", + "tags": [ + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/op-pickaxe", + "category": "Miscellaneous" + }, + { + "title": "nui's Invisible Armors", + "description": "Adds invisible variants for every armor set in the game! Let your fancy cosmetics be seen!", + "tags": [ + "Mobs\\Characters", + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/nuis-invisible-armors", + "category": "Mobs\\Characters" + }, + { + "title": "Noel's Whitelist Manager", + "description": "A simple utility to manage your Hytale server whitelist with a GUI.", + "tags": [ + "Utility", + "Library" + ], + "link": "https://www.curseforge.com/hytale/mods/noels-whitelist-manager", + "category": "Utility" + }, + { + "title": "No Drop", + "description": "Simple Mod to prevent players from dropping ANY items from their inventory!", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/no-drop", + "category": "Utility" + }, + { + "title": "NickNameMod", + "description": "Change nickname in game", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/nicknamemod", + "category": "Utility" + }, + { + "title": "MyTpa", + "description": "A simple tpa plugin for your Hytale server! ", + "tags": [ + "Miscellaneous", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/mytpa", + "category": "Miscellaneous" + }, + { + "title": "Multitools", + "description": "Adds a pickaxe–hatchet multitools!", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/multitools", + "category": "Gameplay" + }, + { + "title": "MovementCommands", + "description": "Collection of commands for modifying player movement properties,toggle fly, change speeds, invert gravity and more!", + "tags": [ + "Utility", + "Miscellaneous", + "Quality of Life", + "Library" + ], + "link": "https://www.curseforge.com/hytale/mods/movementcommands", + "category": "Utility" + }, + { + "title": "More Essence of Water Drops", + "description": "Makes it so every single swimming mob drops Essence of Water.", + "tags": [ + "Mobs\\Characters", + "Miscellaneous", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/more-essence-of-water-drops", + "category": "Mobs\\Characters" + }, + { + "title": "Moon of Equestria", + "description": "This mod replaces Hytale’s full moon with Princess Luna’s moon from My Little Pony", + "tags": [ + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/moon-of-equestria", + "category": "Miscellaneous" + }, + { + "title": "MiningAlerts", + "description": "Announces when players find ores in your server!", + "tags": [ + "Utility", + "Miscellaneous", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/miningalerts", + "category": "Utility" + }, + { + "title": "Lumenia", + "description": "Lumenia: JEI and other QoL a comprehensive utility and enhancement mod designed to streamline the player experience. You can see how to craft and where is it used a searched item", + "tags": [ + "Miscellaneous", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/lumenia", + "category": "Miscellaneous" + }, + { + "title": "Lightsabers of Orbis!", + "description": "Adds 5 Lightsabers to Hytale! Just colour swaps at the moment. Although one is Dual Wield :)", + "tags": [ + "Gameplay", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/orbis-lightsabers", + "category": "Gameplay" + }, + { + "title": "Lendills Stack Size", + "description": "Stack sizes changed!", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/lendills-stack-size", + "category": "Gameplay" + }, + { + "title": "Kyv Vanish", + "description": "Toggle player invisibility and hide map markers in Hytale with /vanish command.", + "tags": [ + "Mobs\\Characters", + "Gameplay", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/kyv-vanish", + "category": "Mobs\\Characters" + }, + { + "title": "Kotale Kotlin Libraries", + "description": "Provides shaded Kotlin libraries for hytale", + "tags": [ + "Library", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/kotale-kotlin-libraries", + "category": "Library" + }, + { + "title": "Keep Inventory", + "description": "Keep your entire inventory on death!", + "tags": [ + "Quality of Life", + "Utility", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/keep-inventory", + "category": "Quality of Life" + }, + { + "title": "Iron Mining Hammer", + "description": "An iron mining hammer that somewhat mines in a 3x3", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/ironmininghammer", + "category": "Gameplay" + }, + { + "title": "Invisible Armors", + "description": "Makes the six crafted armor types have invisible variants so you can see your player customization!", + "tags": [ + "Mobs\\Characters", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/invisible-armors", + "category": "Mobs\\Characters" + }, + { + "title": "Increase Crafting Inventory Radius", + "description": "Adds a GUI that allows you to change the horizontal, vertical and number of chests used in workbenches for crafting inventory.", + "tags": [ + "Quality of Life", + "Gameplay" + ], + "link": "https://www.curseforge.com/hytale/mods/increase-crafting-inventory-radius", + "category": "Quality of Life" + }, + { + "title": "HyVault", + "description": "Economy API for Hytale plugins - Similar to Vault for Minecraft.", + "tags": [ + "Miscellaneous", + "Utility", + "Library" + ], + "link": "https://www.curseforge.com/hytale/mods/hyvault", + "category": "Miscellaneous" + }, + { + "title": "HyConomy", + "description": "A simple Economy plugin for Hytale.", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/hyconomy", + "category": "Gameplay" + }, + { + "title": "HyCommands", + "description": "A server side mod that adds /home /sethome /spawn /homes and much more ...", + "tags": [ + "Miscellaneous", + "Quality of Life", + "Quality of Life", + "Utility", + "Utility", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/hycommands", + "category": "Miscellaneous" + }, + { + "title": "HyBroadcaster", + "description": "A powerful administration tool for broadcasting custom toast notifications and screen titles.", + "tags": [ + "Miscellaneous", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/hybroadcaster", + "category": "Miscellaneous" + }, + { + "title": "HomesPlus", + "description": "A fully configurable home teleportation plugin that lets players set, manage, and teleport to multiple named homes with rank-based limits and delays. Teleports will also cancel on move or damage. Fully customizable config.", + "tags": [ + "Quality of Life", + "Miscellaneous", + "Gameplay", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/homesplus", + "category": "Quality of Life" + }, + { + "title": "Home Manager", + "description": "A lightweight home teleportation plugin with persistent storage, configurable limits, and a 5-second warmup system. No permissions required for players.", + "tags": [ + "Miscellaneous", + "Gameplay", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/homemanager", + "category": "Miscellaneous" + }, + { + "title": "Hola", + "description": "Greets new players on chat!", + "tags": [ + "Quality of Life", + "Utility", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/hola", + "category": "Quality of Life" + }, + { + "title": "Hidden Armor!", + "description": "Show Off That Avatar!", + "tags": [ + "Mobs\\Characters", + "Miscellaneous", + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/hidden-armor", + "category": "Mobs\\Characters" + }, + { + "title": "Havenstale Ranks", + "description": "Add ranks to your server! If you want to have colored chat, permissions and more. this is the plugin for you", + "tags": [ + "Library", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/havenstale-ranks", + "category": "Library" + }, + { + "title": "Go AFK", + "description": "A simple AFK status plugin for Hytale servers.", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/go-afk", + "category": "Gameplay" + }, + { + "title": "German Translation", + "description": "A german language translation for Hytale Eearly Access", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/german-translation", + "category": "Gameplay" + }, + { + "title": "Explosive Mines - Core Addition", + "description": "Adds plenty of explosive mines, normal looking blocks but very explosive! To troll or defend your base. ", + "tags": [ + "Furniture", + "Gameplay", + "Utility", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/explosive-mines-core-addition", + "category": "Furniture" + }, + { + "title": "Epics Potion Trader", + "description": "[Epics] Potion Trader", + "tags": [ + "Quality of Life", + "Gameplay", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/epics-potion-trader", + "category": "Quality of Life" + }, + { + "title": "Entity Spawn Eggs", + "description": "Adds spawn eggs for all the entities in the game", + "tags": [ + "Quality of Life", + "Food\\Farming" + ], + "link": "https://www.curseforge.com/hytale/mods/entity-spawn-eggs", + "category": "Quality of Life" + }, + { + "title": "Economies", + "description": "A simple library to implements economies on server", + "tags": [ + "Gameplay", + "Library" + ], + "link": "https://www.curseforge.com/hytale/mods/economies", + "category": "Gameplay" + }, + { + "title": "EasyWebMap", + "description": "Live web map for Hytale servers. View your world in a browser with real-time player tracking, direction arrows, and click-to-locate. Embed on your website with iframe or build custom tools with the REST API. Uses Hytale's native map rendering.", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/easywebmap", + "category": "Quality of Life" + }, + { + "title": "EasyTPA", + "description": "Let players teleport to each other! Use /tpa to request, /tpaccept to accept. Includes warmup timer, cooldowns, and /tpatoggle to block requests. Simple setup - just drop in your mods folder.", + "tags": [ + "Quality of Life", + "Gameplay", + "Miscellaneous", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/easytpa", + "category": "Quality of Life" + }, + { + "title": "Duondurila's Wooden Sword Asset Pack", + "description": "Adds a wooden sword in the pocket crafting and workbench", + "tags": [ + "Miscellaneous", + "Gameplay", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/duondurilas-wooden-sword-asset-pack", + "category": "Miscellaneous" + }, + { + "title": "DisTale", + "description": "A simple but complete Hytale <> Discord chat bridge.", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/distale", + "category": "Utility" + }, + { + "title": "Discord Link", + "description": "Connect your in-game chat to your Discord server for bi-directional communication!", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/hytale-discord-link", + "category": "Quality of Life" + }, + { + "title": "Discord Integration", + "description": "Two way chat bridge between Hytale server and Discord with player data tracking.", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/discord-integration", + "category": "Utility" + }, + { + "title": "Death Return", + "description": "Adds a simple command to return back to your latest death point /tpDeath to return", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/death-stones", + "category": "Gameplay" + }, + { + "title": "Custom Welcome Messages", + "description": "A simple Hytale plugin that sends custom welcome messages when players join your server.", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/custom-welcome-messages", + "category": "Gameplay" + }, + { + "title": "Cubia's Floating Candles", + "description": "Adds floating animated candles to Hytale.", + "tags": [ + "Furniture" + ], + "link": "https://www.curseforge.com/hytale/mods/cubias-floating-candles", + "category": "Furniture" + }, + { + "title": "Complete Campfires", + "description": "Allows you to use naturally spawning campfires as, well, campfires.", + "tags": [ + "Gameplay", + "Quality of Life", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/complete-campfires", + "category": "Gameplay" + }, + { + "title": "Command Abbreviation Config", + "description": "Create abbreviations for commands you frequently use.", + "tags": [ + "Miscellaneous", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/command-abbreviation-config", + "category": "Miscellaneous" + }, + { + "title": "Clearity", + "description": "Clearity is a lightweight Hytale plugin that automatically clears dropped items on a configurable timer to reduce server lag and improve performance.", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/clearity", + "category": "Quality of Life" + }, + { + "title": "ClearChat", + "description": "A lightweight Hytale plugin to instantly clear the global chat for all players. Simple, efficient, and easy to use.", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/clearchat", + "category": "Utility" + }, + { + "title": "ChestRangeMod", + "description": "Allows configuring horizontal/vertical search radius and chest limit via config.json", + "tags": [ + "Gameplay", + "Quality of Life", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/chestrangemod", + "category": "Gameplay" + }, + { + "title": "Chest Terminal", + "description": "The mod adds a block that automatically distributes items into chests within a radius of 50 blocks.", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/chest-terminal", + "category": "Utility" + }, + { + "title": "Brazilian Portuguese Translation", + "description": "Brazilian Portuguese (PT-BR) translation pack for Hytale. Includes translated menus, UI elements, and interface. Work in progress - not 100% complete or fully reviewed.", + "tags": [ + "Miscellaneous", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/brazilian-portuguese-translation", + "category": "Miscellaneous" + }, + { + "title": "Blahaj Plushie", + "description": "Bring Blahaj into your home!", + "tags": [ + "Blocks", + "Furniture" + ], + "link": "https://www.curseforge.com/hytale/mods/blahaj-plushie", + "category": "Blocks" + }, + { + "title": "Blackbox", + "description": "Your server’s “what just happened?” button. An incident recorder that turns mystery lag into a tidy zip you can actually act on.", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/blackbox", + "category": "Quality of Life" + }, + { + "title": "Bigger ore stacks", + "description": "This mod makes the ore stacks bigger (100)", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/bigger-ore-stacks", + "category": "Quality of Life" + }, + { + "title": "Bettertale", + "description": "Enhances stuff that did not feel right in the vanilla game without feeling out of place, overhauls the Zone1 sun/moon and weather to be more realistic for example!", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/bettertale", + "category": "Gameplay" + }, + { + "title": "Better Item Viewer", + "description": "Adds an item viewer with a bunch of extra information about tools, weapons and other items that are not visible in the base game", + "tags": [ + "Quality of Life", + "Miscellaneous", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/better-item-viewer", + "category": "Quality of Life" + }, + { + "title": "Auto Announce", + "description": "Auto Announcer Mod for everyone to see in your server. Supports colors, delays, and multiple messages!", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/auto-announce", + "category": "Utility" + }, + { + "title": "Anti Spam", + "description": "Set a configurable delay before players can chat again!", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/anti-spam", + "category": "Utility" + }, + { + "title": "AlertServer", + "description": "A simple Hytale server plugin that displays customizable in-game alert titles to players.", + "tags": [ + "Survival" + ], + "link": "https://www.curseforge.com/hytale/worlds/alertserver", + "category": "Survival" + }, + { + "title": "Advanced Crafting", + "description": "Adjust crafting costs, speed, and prerequisites; toggle item crafting on or off; and modify recipe ingredients and results.", + "tags": [ + "Gameplay", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/advanced-crafting", + "category": "Gameplay" + }, + { + "title": "[Moonlight] Unify", + "description": "A Discord Chat bridge for Hytale Servers.", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/moonlight-unify", + "category": "Quality of Life" + }, + { + "title": "Zard's Sick Glowys", + "description": "Adds simple colored glowy blocks.", + "tags": [ + "Miscellaneous", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/glowys", + "category": "Miscellaneous" + }, + { + "title": "Warps", + "description": "Warps is a server-wide teleportation plugin that lets admins create named warp points", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/warps", + "category": "Utility" + }, + { + "title": "Wan's Wonder Weapons", + "description": "A collection of unique weapons for Hytale, new \"relics\" blending elemental power, dark magic, and a touch of absurdity!", + "tags": [ + "Gameplay", + "Miscellaneous", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/wans-wonder-weapons", + "category": "Gameplay" + }, + { + "title": "Wan's Farting Wonders", + "description": "Most awaited Hytale mod! Fart with friends!", + "tags": [ + "Miscellaneous", + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/wans-farting-wonders", + "category": "Miscellaneous" + }, + { + "title": "Vein Miner", + "description": "Automatically mines connected ores when a block is broken. Supports all ore types identified by group or naming convention.", + "tags": [ + "Miscellaneous", + "Gameplay", + "Utility", + "Quality of Life", + "Blocks" + ], + "link": "https://www.curseforge.com/hytale/mods/vein-miner", + "category": "Miscellaneous" + }, + { + "title": "Useful Sticks", + "description": "Repurpose Sticks into Wood Logs or Planks and the other way around!", + "tags": [ + "Quality of Life", + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/useful-sticks", + "category": "Quality of Life" + }, + { + "title": "Tradução Brasileira", + "description": "A translation for the game Hytale in Brazilian Portuguese.", + "tags": [ + "Utility", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/traducao-brasileira", + "category": "Utility" + }, + { + "title": "Stamina Rebalance", + "description": "Rebalances stamina consumption and regeneration.", + "tags": [ + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/stamina-rebalance", + "category": "Miscellaneous" + }, + { + "title": "spark", + "description": "spark is a performance profiler mod for Hytale.", + "tags": [ + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/spark", + "category": "Utility" + }, + { + "title": "Spanish Translation", + "description": "Add a Spanish translation of the game. --- Añade una traducción del juego al español.", + "tags": [ + "Miscellaneous", + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/hytale-spanish-translation", + "category": "Miscellaneous" + }, + { + "title": "Skull Arena PVP/PVE", + "description": "Skull Arena PVP/PVE Epic mob battles, player battles with chests full of weapons, staffs and bows included!", + "tags": [ + "Adventure", + "Minigames" + ], + "link": "https://www.curseforge.com/hytale/worlds/skull-arena-pvp-pve", + "category": "Adventure" + }, + { + "title": "SimpleHomes", + "description": "A basic /home plugin", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/simplehomes", + "category": "Quality of Life" + }, + { + "title": "SimpleEssentials", + "description": "Adds useful commands for players", + "tags": [ + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/simpleessentials", + "category": "Quality of Life" + }, + { + "title": "Safezones", + "description": "Command-based safezones. Simply use /safezone for all commands!", + "tags": [ + "Quality of Life" + ], + "link": "https://www.curseforge.com/hytale/mods/safezones", + "category": "Quality of Life" + }, + { + "title": "Re:Zero Return By Death (Respawn Sound)", + "description": "Replace the respawn sounds effect with the Return By Death sound effect from the anime Re:Zero", + "tags": [ + "Miscellaneous" + ], + "link": "https://www.curseforge.com/hytale/mods/re-zero-return-by-death-respawn-sound", + "category": "Miscellaneous" + }, + { + "title": "Quickstacker", + "description": "Adds a command to quick stack to nearby chests", + "tags": [ + "Quality of Life", + "Gameplay", + "Utility", + "Mobs\\Characters" + ], + "link": "https://www.curseforge.com/hytale/mods/quickstacker", + "category": "Quality of Life" + }, + { + "title": "QuickSleep", + "description": "Skip the night when a configurable percentage of players are sleeping.", + "tags": [ + "Gameplay", + "Quality of Life", + "Utility" + ], + "link": "https://www.curseforge.com/hytale/mods/quicksleep", + "category": "Gameplay" + } ] \ No newline at end of file From 064c64299b87c27912a04053519bd405d5797c2f Mon Sep 17 00:00:00 2001 From: fgalz Date: Wed, 14 Jan 2026 16:01:30 +0100 Subject: [PATCH 09/10] Sidebar --- sidebars.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sidebars.js b/sidebars.js index b9c3db8e3..fcc1334e0 100644 --- a/sidebars.js +++ b/sidebars.js @@ -695,7 +695,12 @@ const sidebars = { label: "Configuration", key: "gameserver-configuration-hytale-popular", items: [ + 'hytale-becomeadmin', + 'hytale-permissions', + 'hytale-whitelist', 'hytale-mods', + 'hytale-gamemode' + ] }, { @@ -704,6 +709,7 @@ const sidebars = { key: "gameserver-troubleshooting-hytale-popular", items: [ "hytale-troubleshooting-common-issues", + "hytale-troubleshooting-slow-connection" ] }, ], @@ -2396,7 +2402,12 @@ const sidebars = { label: "Configuration", key: "gameserver-configuration-hytale", items: [ + 'hytale-becomeadmin', + 'hytale-permissions', + 'hytale-whitelist', 'hytale-mods', + 'hytale-gamemode' + ] }, { @@ -2405,6 +2416,7 @@ const sidebars = { key: "gameserver-troubleshooting-hytale", items: [ "hytale-troubleshooting-common-issues", + "hytale-troubleshooting-slow-connection" ] }, ], From 5fa4f507308d49644fe8f592f7dd73e3df464dda Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 14 Jan 2026 16:25:09 +0100 Subject: [PATCH 10/10] Auto-translate docs --- .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 31 ++- .../current/hytale-firststeps-dashboard.md | 78 +++--- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 14 +- .../current/hytale-permissions.md | 145 +++++++++++ .../hytale-troubleshooting-common-issues.md | 90 +++---- .../hytale-troubleshooting-slow-connection.md | 109 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 58 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 33 ++- .../current/hytale-firststeps-dashboard.md | 66 +++-- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 12 +- .../current/hytale-permissions.md | 145 +++++++++++ .../hytale-troubleshooting-common-issues.md | 52 ++-- .../hytale-troubleshooting-slow-connection.md | 106 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 17 +- .../current/hytale-firststeps-dashboard.md | 58 ++--- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 12 +- .../current/hytale-permissions.md | 145 +++++++++++ .../hytale-troubleshooting-common-issues.md | 35 ++- .../hytale-troubleshooting-slow-connection.md | 103 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 21 +- .../current/hytale-firststeps-dashboard.md | 62 +++-- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 14 +- .../current/hytale-permissions.md | 145 +++++++++++ .../hytale-troubleshooting-common-issues.md | 73 +++--- .../hytale-troubleshooting-slow-connection.md | 109 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 58 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 33 ++- .../current/hytale-firststeps-dashboard.md | 66 +++-- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 28 +- .../current/hytale-permissions.md | 145 +++++++++++ .../hytale-troubleshooting-common-issues.md | 70 +++-- .../hytale-troubleshooting-slow-connection.md | 116 +++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 27 +- .../current/hytale-firststeps-dashboard.md | 106 ++++---- .../current/hytale-gamemode.md | 78 ++++++ .../current/hytale-mods.md | 16 +- .../current/hytale-permissions.md | 145 +++++++++++ .../hytale-troubleshooting-common-issues.md | 71 +++-- .../hytale-troubleshooting-slow-connection.md | 111 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 21 +- .../current/hytale-firststeps-dashboard.md | 86 +++--- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 8 +- .../current/hytale-permissions.md | 145 +++++++++++ .../hytale-troubleshooting-common-issues.md | 65 +++-- .../hytale-troubleshooting-slow-connection.md | 105 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 25 +- .../current/hytale-firststeps-dashboard.md | 78 +++--- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 8 +- .../current/hytale-permissions.md | 145 +++++++++++ .../hytale-troubleshooting-common-issues.md | 79 +++--- .../hytale-troubleshooting-slow-connection.md | 111 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 21 +- .../current/hytale-firststeps-dashboard.md | 98 ++++--- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 10 +- .../current/hytale-permissions.md | 145 +++++++++++ .../hytale-troubleshooting-common-issues.md | 59 +++-- .../hytale-troubleshooting-slow-connection.md | 102 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 23 +- .../current/hytale-firststeps-dashboard.md | 80 +++--- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 16 +- .../current/hytale-permissions.md | 146 +++++++++++ .../hytale-troubleshooting-common-issues.md | 72 +++--- .../hytale-troubleshooting-slow-connection.md | 103 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 9 +- .../current/hytale-firststeps-dashboard.md | 84 +++--- .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 18 +- .../current/hytale-permissions.md | 146 +++++++++++ .../hytale-troubleshooting-common-issues.md | 80 +++--- .../hytale-troubleshooting-slow-connection.md | 104 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ .../current/hytale-becomeadmin.md | 53 ++++ .../current/hytale-firststeps-connect.md | 76 ++++++ .../current/hytale-firststeps-dashboard.md | 244 ++++++++++++++++++ .../current/hytale-gamemode.md | 76 ++++++ .../current/hytale-mods.md | 42 +++ .../current/hytale-permissions.md | 146 +++++++++++ .../hytale-troubleshooting-common-issues.md | 169 ++++++++++++ .../hytale-troubleshooting-slow-connection.md | 108 ++++++++ .../current/hytale-whitelist.md | 136 ++++++++++ .../current/hytale-world-management.md | 64 +++++ 120 files changed, 8477 insertions(+), 1047 deletions(-) create mode 100644 i18n/ar/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/ar/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/ar/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/ar/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/ar/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/ar/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/de/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/de/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/de/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/de/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/de/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/de/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/es/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/es/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/es/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/es/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/es/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/es/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/fr/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/fr/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/fr/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/fr/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/fr/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/fr/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/it/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/it/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/it/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/it/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/it/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/it/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/ja/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/ja/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/ja/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/ja/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/ja/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/ja/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/nl/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/nl/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/nl/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/nl/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/nl/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/nl/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/pl/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/pl/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/pl/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/pl/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/pl/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/pl/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/pt/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/pt/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/pt/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/pt/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/pt/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/pt/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/sv/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/sv/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/sv/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/sv/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/sv/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/sv/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/th/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/th/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/th/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/th/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/th/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/th/docusaurus-plugin-content-docs/current/hytale-world-management.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-firststeps-connect.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-firststeps-dashboard.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-gamemode.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-mods.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-permissions.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-troubleshooting-common-issues.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-troubleshooting-slow-connection.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-whitelist.md create mode 100644 i18n/zh/docusaurus-plugin-content-docs/current/hytale-world-management.md diff --git a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md new file mode 100644 index 000000000..583925fe3 --- /dev/null +++ b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-becomeadmin.md @@ -0,0 +1,53 @@ +--- +id: hytale-becomeadmin +title: "Hytale: كيف تصبح أدمن (مشغل) على سيرفرك" +description: "اكتشف كيف تعطي صلاحيات الأدمن للتحكم الكامل بالسيرفر وإدارة وظائف اللعبة بفعالية → تعلّم المزيد الآن" +sidebar_label: كيف تصبح أدمن +services: + - gameserver-hytale +--- + +import InlineVoucher from '@site/src/components/InlineVoucher'; + +## مقدمة +إعطاء صلاحيات الأدمن على سيرفر Hytale يسمح للاعبين الموثوقين بمساعدة إدارة السيرفر. الأدمنز، اللي يُطلق عليهم كمان مشغلين، يقدروا ينفذوا أوامر السيرفر، يديروا اللاعبين، ويساعدوا في مراقبة السيرفر. هالشيء بيخلي تفويض المهام الروتينية أسهل لمالكي السيرفر وبيساعد في الحفاظ على تجربة لعب سلسة. + +:::info تنبيه الوصول المبكر + +لعبة Hytale نزلت بتاريخ 13 يناير 2026 وحالياً متوفرة في مرحلة الوصول المبكر. بما إن اللعبة لا تزال في مرحلة تطوير نشطة، برامج السيرفر، ملفات الإعداد، دعم التعديلات، وطرق التثبيت ممكن تستمر بالتغير مع الوقت. + +::: + +![img](https://screensaver01.zap-hosting.com/index.php/s/2NnFBkPdsDoBYZj/preview) + + + + + +## إعطاء الصلاحيات + + + +الأدمنز على سيرفر Hytale بياخذوا حالة مشغل، واللي بتعطيهم صلاحيات أوامر متقدمة. هالشيء ممكن يتم إما من خلال **كونسول السيرفر** أو **أوامر داخل اللعبة** بواسطة مشغل موجود أصلاً. لإعطاء صلاحيات مشغل للاعب، اكتب الأمر التالي في كونسول السيرفر أو داخل اللعبة مع وجود صلاحيات كافية: + +``` +/op add +``` + + + +## إزالة الصلاحيات + +إذا ما عاد اللاعب بحاجة لصلاحيات الأدمن أو ما لازم يكون عنده صلاحيات متقدمة، ممكن تشيل حالة المشغل عنه بأي وقت: + +``` +/op remove +``` + +بعد الإزالة، اللاعب بيرجع لمستوى الصلاحيات العادي وما راح يقدر يستخدم أوامر الأدمن. + + + +## الخلاصة + +تصبح أدمن على سيرفر Hytale عن طريق صلاحيات المشغل هو جزء أساسي من إدارة السيرفر، وبيخلي اللاعبين الموثوقين يساعدوا في المراقبة والمهام الإدارية. لأي أسئلة أو مساعدة إضافية، لا تتردد تتواصل مع فريق الدعم عندنا، متوفرين يومياً لخدمتك! 🙂 \ No newline at end of file diff --git a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-firststeps-connect.md b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-firststeps-connect.md index 99f8b9346..152743618 100644 --- a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-firststeps-connect.md +++ b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-firststeps-connect.md @@ -13,14 +13,13 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ## مقدمة -مش متأكد كيف تتصل بسيرفر **Hytale** الخاص بك أو شو تحتاج لتبدأ؟ لا تقلق، إحنا معك! رح نرشدك بكل اللي تحتاجه. من الأدوات والمعلومات المطلوبة لعملية الاتصال نفسها، مع أهم النقاط لضمان تجربة اتصال سلسة وخالية من المشاكل. اتبع دليلنا ورح تكون متصل بسرعة! +مش متأكد كيف تتصل بسيرفر **Hytale** الخاص بك أو شو تحتاج لتبدأ؟ لا تقلق، إحنا معاك! رح نرشدك بكل اللي تحتاجه. من الأدوات والمعلومات المطلوبة لعملية الاتصال نفسها، مع أهم النقاط لضمان تجربة اتصال سلسة وخالية من المشاكل. اتبع دليلنا ورح تكون متصل بسرعة! -:::info -من المقرر إصدار Hytale في 13 يناير 2026. بما أن ملفات السيرفر الرسمية، وأدوات التعديل، وطرق التثبيت قد تتغير في فترة ما بعد الإطلاق المبكرة، ممكن أجزاء من هذا الدليل تصير قديمة. +:::info إشعار الوصول المبكر -الصفحة رح تتحدث بأسرع ما تتوفر معلومات مؤكدة ومستقرة عن دعم التعديلات، صيغ الملفات ومتطلبات الإعداد -::: +تم إصدار Hytale في 13 يناير 2026 وهو متاح حالياً في مرحلة الوصول المبكر. بما أن اللعبة لا تزال في مرحلة تطوير نشطة، قد تستمر برامج السيرفر، ملفات الإعداد، دعم التعديلات، وإجراءات التثبيت بالتغير مع الوقت. +::: @@ -28,7 +27,7 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ## الحصول على تفاصيل السيرفر -رح تحتاج كل المعلومات اللازمة للاتصال بسيرفرك. معلومات السيرفر موجودة في لوحة المعلومات الخاصة بسيرفر الألعاب على الويب. المعلومات المهمة تشمل: +رح تحتاج كل المعلومات اللازمة للاتصال بسيرفرك. معلومات السيرفر الخاصة فيك تلاقيها في لوحة المعلومات الخاصة بسيرفر الألعاب على الويب. المعلومات المهمة تشمل: - عنوان IP والمنفذ - اسم السيرفر @@ -39,39 +38,39 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ![img](https://screensaver01.zap-hosting.com/index.php/s/x9f7brkqDKjsEz5/preview) -## إنشاء الاتصال بالسيرفر +## إنشاء اتصال بالسيرفر -الاتصال بسيرفر ألعاب غالبًا ما يتم بطرق واحدة أو أكثر. الطرق المتاحة موضحة ومفسرة بالتفصيل أدناه. +الاتصال بسيرفر ألعاب غالباً ما يتم بواحدة أو أكثر من الطرق. الطرق المتاحة موضحة ومفسرة بالتفصيل أدناه. -عادةً يتم إنشاء الاتصال باستخدام عنوان IP للسيرفر والمنفذ، وكلمة مرور اختيارية. الإجراء الدقيق للاتصال بالسيرفر رح يتم توثيقه هنا بمجرد تأكيد التنفيذ النهائي للإصدار الرسمي. +عادةً يتم إنشاء الاتصال باستخدام عنوان IP للسيرفر والمنفذ، وأحياناً كلمة مرور. الإجراء الدقيق للاتصال بالسيرفر رح يتم توثيقه هنا بمجرد تأكيد التنفيذ النهائي للإصدار الرسمي. ## المشاكل المحتملة والحلول -الاتصال بسيرفر ألعاب غالبًا ما يتم بطرق واحدة أو أكثر. الطرق المتاحة موضحة ومفسرة بالتفصيل أدناه. +الاتصال بسيرفر ألعاب غالباً ما يتم بواحدة أو أكثر من الطرق. الطرق المتاحة موضحة ومفسرة بالتفصيل أدناه. #### غير مرئي -عدم ظهور السيرفر ممكن يصير إذا ما اكتمل التهيئة بنجاح. ممكن يكون بسبب إعداد خاطئ أو ملفات تالفة. عادةً تقدر تلاقي معلومات إضافية في كونسول السيرفر أو ملفات السجل. +عدم ظهور السيرفر ممكن يصير إذا ما اكتمل التهيئة بنجاح. ممكن يكون بسبب إعداد خاطئ أو ملفات تالفة. عادةً تقدر تلاقي معلومات إضافية في وحدة تحكم السيرفر أو ملفات السجل. -#### الحل مفقود أو غير مفيد +#### لا يوجد حل أو غير مفيد -لا زلت تواجه مشاكل بعد المحاولة؟ في هالحالة، فريق الدعم متوفر يوميًا لمساعدتك. ببساطة افتح **[تذكرة](https://zap-hosting.com/en/customer/support/)** على موقعنا وشرح مشكلتك بأكبر قدر من التفاصيل. رح نراجعها بأسرع وقت ونساعدك بحل المشكلة! +لا زلت تواجه مشاكل بعد المحاولة؟ في هالحالة، فريق الدعم متوفر يومياً لمساعدتك. ببساطة افتح **[تذكرة](https://zap-hosting.com/en/customer/support/)** على موقعنا وشرح مشكلتك بأكبر قدر ممكن من التفاصيل. رح نراجعها بأسرع وقت ونساعدك بحل المشكلة! -## الخاتمة +## الخلاصة -مبروك، إذا اتبعت كل الخطوات، لازم تكون نجحت في إنشاء اتصال بالسيرفر. لأي أسئلة أو مساعدة إضافية، لا تتردد تتواصل مع فريق الدعم المتوفر يوميًا لمساعدتك! 🙂 +مبروك، إذا اتبعت كل الخطوات، لازم تكون نجحت في إنشاء اتصال بالسيرفر. لأي أسئلة أو مساعدة إضافية، لا تتردد تتواصل مع فريق الدعم المتوفر يومياً لمساعدتك! 🙂 - \ No newline at end of file + diff --git a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-firststeps-dashboard.md b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-firststeps-dashboard.md index c2db31b5f..596f4b6dc 100644 --- a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-firststeps-dashboard.md +++ b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-firststeps-dashboard.md @@ -1,7 +1,7 @@ --- id: hytale-firststeps-dashboard title: "Hytale: نظرة عامة على لوحة المعلومات" -description: "اكتشف كيف تدير سيرفر Hytale الخاص بك بكفاءة وتحسّن الأداء والتحكم → تعلّم المزيد الآن" +description: "اكتشف كيف تدير سيرفر Hytale الخاص بك بكفاءة وتحسّن أدائه وتحكمك → تعلّم المزيد الآن" sidebar_label: لوحة المعلومات services: - gameserver-hytale @@ -12,17 +12,15 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ## مقدمة -هل أنت مهتم بسيرفر **Hytale** أو تمتلك واحدًا بالفعل، لكنك تفتقد نظرة شاملة على الإدارة وإيجاد جميع الخيارات الضرورية؟ خصوصًا في البداية، قد يكون هذا تحديًا. لا تقلق، سنوفر لك مقدمة مفصلة لإدارة خدمتك أدناه، لتتمكن من الحصول على أفضل نظرة ممكنة. +هل أنت مهتم بسيرفر **Hytale** أو تملكه بالفعل، لكنك تفتقد إلى نظرة شاملة على الإدارة وإيجاد جميع الخيارات الضرورية؟ خصوصًا في البداية، قد يكون هذا تحديًا. لا تقلق، سنوفر لك مقدمة مفصلة لإدارة خدمتك أدناه، لتتمكن من الحصول على أفضل نظرة ممكنة. -بعد الاطلاع على هذا الدليل، ستتمكن بسهولة من إدارة سيرفرك بكفاءة والعثور على جميع الخيارات والميزات اللازمة بسرعة وسهولة. هنا ستحصل على نظرة منظمة تساعدك خطوة بخطوة على التعرف على إدارة السيرفر وتوسيع معرفتك بشكل مستهدف. بهذه الطريقة، يمكنك ضمان أن سيرفر **Hytale** الخاص بك مُكيف بشكل مثالي لاحتياجاتك وأنك تستفيد إلى أقصى حد من الخيارات المتاحة. +بعد الاطلاع على هذا الدليل، ستتمكن بسهولة من إدارة سيرفرك بكفاءة والعثور على جميع الخيارات والميزات اللازمة بسرعة وسهولة. هنا ستحصل على نظرة منظمة تساعدك خطوة بخطوة على التعرف على إدارة السيرفر وتوسيع معرفتك بشكل موجه. بهذه الطريقة، يمكنك التأكد من أن سيرفر **Hytale** الخاص بك مُكيف بشكل مثالي لاحتياجاتك وأنك تستفيد إلى أقصى حد من الخيارات المتاحة. -:::info +:::info إشعار الوصول المبكر -من المقرر إصدار Hytale في 13 يناير 2026. نظرًا لأن ملفات السيرفر الرسمية، وأدوات التعديل، وإجراءات التثبيت قد تتغير في المرحلة الأولى بعد الإطلاق، قد تصبح أجزاء من هذا الدليل قديمة. - -سيتم تحديث الصفحة بمجرد توفر معلومات مؤكدة ومستقرة حول دعم التعديلات، وصيغ الملفات، ومتطلبات الإعداد. +تم إصدار Hytale في 13 يناير 2026 وهو متاح حاليًا في مرحلة الوصول المبكر. وبما أن اللعبة لا تزال في طور التطوير النشط، فقد تستمر برامج السيرفر، ملفات التكوين، دعم التعديلات، وإجراءات التثبيت في التغير مع مرور الوقت. ::: @@ -32,13 +30,13 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ## إدارة المنتج -في قسم **إدارة المنتج**، ستجد جميع الصفحات اللازمة لإدارة سيرفرك. الخيارات المتاحة لإدارة سيرفرك مدرجة بالتفصيل أدناه. +في قسم **إدارة المنتج**، ستجد جميع الصفحات اللازمة لإدارة سيرفرك. الخيارات المتاحة لإدارة سيرفرك مذكورة بالتفصيل أدناه. ### لوحة المعلومات -تُعد **لوحة المعلومات** لسيرفرك قلب الإدارة. تُعرض هنا جميع المعلومات الأساسية والضرورية عن خدمتك بشكل واضح. يشمل ذلك، على سبيل المثال، معلومات عن الموقع، الحالة، عنوان IP: المنفذ، الذاكرة المستخدمة، اللعبة الجارية، اسم السيرفر، الخريطة وعدد الفتحات المتاحة. بالإضافة إلى ذلك، يتم عرض استهلاك CPU، والذاكرة، وRAM. +تُعد **لوحة المعلومات** لسيرفرك قلب الإدارة. تُعرض هنا جميع المعلومات الأساسية والضرورية عن خدمتك بشكل واضح. يشمل ذلك، على سبيل المثال، معلومات عن الموقع، الحالة، عنوان IP: المنفذ، الذاكرة المستخدمة، اللعبة الجارية، اسم السيرفر، الخريطة وعدد الفتحات المتاحة. بالإضافة إلى ذلك، يتم عرض استهلاك CPU، الذاكرة وRAM. ![img](https://screensaver01.zap-hosting.com/index.php/s/x9f7brkqDKjsEz5/preview) @@ -47,21 +45,21 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; -### الإحصائيات +### الإحصائيات -تحت قسم **الإحصائيات** تحصل على نظرة شاملة على قيم تحميل سيرفرك. ستجد هناك معلومات عن جوانب مختلفة مثل تحميل الفتحات المتاحة، CPU والذاكرة. يمكنك عرض هذه البيانات لفترات زمنية مختلفة، مثل آخر **60 دقيقة، 24 ساعة، 3 أيام، 7 أيام** أو **30 يومًا.** +في قسم **الإحصائيات** تحصل على نظرة شاملة على قيم التحميل لسيرفرك. ستجد هناك معلومات عن جوانب مختلفة مثل تحميل الفتحات المتاحة، CPU والذاكرة. يمكنك عرض هذه البيانات لفترات زمنية مختلفة، مثل آخر **60 دقيقة، 24 ساعة، 3 أيام، 7 أيام** أو **30 يومًا.** ![](https://screensaver01.zap-hosting.com/index.php/s/N8jcmdqqG2Xt4Bk/preview) -بفضل هذه المعلومات، تحصل على رؤية جيدة لاستخدام سيرفرك. بالإضافة إلى ذلك، غالبًا ما تساعد هذه الإحصائيات في تحديد مشاكل الأداء المحتملة وتضييق أسبابها. على سبيل المثال، يمكنك تتبع متى زاد الاستهلاك وما إذا كان مرتبطًا بأحداث أو تغييرات معينة. هذا مهم بشكل خاص عند ظهور مشاكل مفاجئة، حيث يتيح لك اتخاذ خطوات مستهدفة لاستكشاف الأخطاء وتحليل الأسباب بشكل منهجي. +بفضل هذه المعلومات، تحصل على رؤية جيدة لاستخدام سيرفرك. بالإضافة إلى ذلك، غالبًا ما تساعد هذه الإحصائيات في تحديد مشاكل الأداء المحتملة وتضييق أسبابها. على سبيل المثال، يمكنك تتبع متى زاد الاستهلاك وما إذا كان مرتبطًا بأحداث أو تغييرات معينة. هذا مهم بشكل خاص عند ظهور مشاكل مفاجئة، حيث يتيح لك اتخاذ خطوات مستهدفة لاستكشاف الأخطاء وتحليل الأسباب المحتملة بشكل منهجي. ### مدير DDoS -اطلع على هجمات DDoS السابقة لتقييم التهديدات والأنماط المحتملة بشكل أفضل. فعّل الإشعارات للهجمات الجارية على سيرفرك لتتمكن من الرد بسرعة عند حدوث أي حادث. +اطلع على هجمات DDoS السابقة لتقييم التهديدات والأنماط المحتملة بشكل أفضل. فعّل الإشعارات لهجمات DDoS الجارية على سيرفرك لتتمكن من الرد بسرعة عند حدوث أي حادث. -اعتمادًا على موقع الخادم وحماية DDoS المتوفرة هناك، يمكنك أيضًا مراقبة الهجمات النشطة في الوقت الفعلي. يشمل ذلك رؤى تفصيلية لحركة المرور، تظهر كل من حركة المرور الشرعية وكمية الحركة التي تم حظرها بواسطة أنظمة التخفيف. هذا المستوى من الشفافية يساعدك على فهم كيفية عمل الحماية ويمكنك من التعرف على المخاطر المحتملة مبكرًا. +اعتمادًا على موقع الخادم وحماية DDoS المتوفرة هناك، يمكنك أيضًا مراقبة الهجمات النشطة في الوقت الحقيقي. يشمل ذلك رؤى تفصيلية لحركة المرور، تظهر كل من حركة المرور الشرعية وكمية الحركة التي تم حظرها بواسطة أنظمة التخفيف. هذا المستوى من الشفافية يساعدك على فهم كيفية عمل الحماية ويمكنك من التعرف على المخاطر المحتملة مبكرًا. :::info هل تفتقد الوصول إلى مدير DDoS؟ يتطلب استخدام مدير DDoS إما عنوان IP مخصص أو خيار إضافي "نظرة عامة على مدير DDoS". إذا لم يتضمن باقتك الحالية هذه المكونات، يمكنك إضافتها في أي وقت عن طريق ترقية خدمتك. @@ -74,16 +72,16 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; :::warning -استخدام مدير DDoS ممكن فقط إذا تم حجز عنوان IP خاص أو خيار "نظرة عامة على مدير DDoS" كخيار إضافي. إذا كانت هذه المكونات مفقودة في باقتك الحالية، يمكنك إضافتها في أي وقت عن طريق الترقية. +يمكن استخدام مدير DDoS فقط إذا تم حجز عنوان IP خاص أو خيار "نظرة عامة على مدير DDoS" كخيار إضافي. إذا كانت هذه المكونات مفقودة من باقتك الحالية، يمكنك إضافتها في أي وقت عن طريق الترقية. ::: ### ملفات السجل -هل تواجه مشكلة تقنية ولا تعرف سببها؟ أول خطوة ممكنة هي التحقق من **ملفات السجل**. تحتوي هذه الملفات على الكثير من المعلومات عن السيرفر، مثل الأحداث الحالية، التلميحات أو رسائل الخطأ. +هل تواجه مشكلة تقنية ولا تعرف سببها؟ أول استراتيجية ممكنة هي التحقق من **ملفات السجل**. تحتوي هذه الملفات على الكثير من المعلومات عن السيرفر، مثل الأحداث الحالية، التلميحات أو رسائل الخطأ. -رسائل الخطأ بشكل خاص يمكن أن تساعد في تحديد وفهم سبب المشكلة بشكل أفضل. غالبًا ما يمكن كشف الصعوبات وحلها من خلال إلقاء نظرة مستهدفة على ملفات السجل. +رسائل الخطأ بشكل خاص يمكن أن تساعد في تحديد وفهم سبب المشكلة بشكل أفضل. غالبًا ما يمكن اكتشاف الصعوبات وحلها من خلال إلقاء نظرة مستهدفة على ملفات السجل. :::warning هل المعلومات الموجودة هناك لا تساعدك أو لا تفهمها؟ لا تقلق! في هذه الحالة، نحن متواجدون يوميًا في الدعم. فقط أنشئ **[تذكرة](https://zap-hosting.com/en/customer/support/)** وشرح مشكلتك لنا. سننظر فيها بأسرع وقت ممكن ونساعدك في حل المشكلة! :) @@ -100,21 +98,21 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ### الكونسول المباشر -يقدم لك **الكونسول المباشر** عرضًا فوريًا لجميع الأحداث الحالية على سيرفرك. هنا يمكنك رؤية معلومات عن نشاطات اللاعبين بالإضافة إلى رسائل الخطأ والرسائل النظامية المحتملة. تتيح لك هذه النظرة الحصول على رؤية شاملة لما يحدث على سيرفرك واكتشاف المشاكل المحتملة في وقت مبكر. +يقدم لك **الكونسول المباشر** عرضًا لحظيًا لجميع الأحداث الجارية على سيرفرك. هنا يمكنك رؤية معلومات عن أنشطة اللاعبين بالإضافة إلى رسائل الخطأ والرسائل النظامية المحتملة. تتيح لك هذه النظرة الحصول على رؤية شاملة لما يحدث على سيرفرك واكتشاف المشاكل المحتملة في وقت مبكر. ![](https://screensaver01.zap-hosting.com/index.php/s/J9SsmSrPXnG7P9w/preview) -بالإضافة إلى مراقبة الأحداث، يمكنك أيضًا إرسال أوامر مباشرة إلى السيرفر عبر **الكونسول المباشر**. هذا مفيد لضبط الإعدادات، تنفيذ إجراءات معينة، أو الرد بسرعة على المشاكل التي تظهر. +بالإضافة إلى مراقبة الأحداث، يمكنك أيضًا إرسال أوامر مباشرة إلى السيرفر في **الكونسول المباشر**. هذا مفيد لضبط الإعدادات، تنفيذ إجراءات معينة، أو الرد بسرعة على المشاكل التي قد تظهر. ### انقطاعات الخدمة -هل كان سيرفرك غير متصل مؤقتًا ولا تعرف السبب؟ هل لم توفر نظرة سجل الأحداث وملفات السجل أي معلومات؟ قد يكون سبب المشكلة ليس في سيرفرك مباشرة، بل في نظام الاستضافة الذي يعمل عليه سيرفرك. +هل كان سيرفرك غير متصل مؤقتًا ولا تعرف السبب؟ هل لم توفر نظرة في سجل الأحداث وملفات السجل أي معلومات؟ قد يكون سبب المشكلة ليس في سيرفرك مباشرة، بل في نظام الاستضافة الذي يعمل عليه سيرفرك. إذا كشف نظام المراقبة لدينا عن انقطاع عام، يتم إعلام الفنيين تلقائيًا وهم يتولون معالجة المشكلة بأسرع وقت ممكن. -في هذا القسم ستجد نظرة على تاريخ الانقطاعات لنظام الاستضافة الذي يعمل عليه سيرفر ألعابك. يمكنك العثور على مزيد من المعلومات وأحدث نسخة من حالة خدماتنا على صفحة [الحالة](https://status.zap-hosting.com/) الجديدة لدينا. +في هذا القسم ستجد نظرة على تاريخ الانقطاعات لنظام الاستضافة الذي يعمل عليه سيرفر ألعابك. يمكنك العثور على مزيد من المعلومات وأحدث نسخة من حالة خدمتنا على صفحة [الحالة](https://status.zap-hosting.com/) الجديدة لدينا. @@ -129,7 +127,7 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ## الإعدادات -في قسم **الإعدادات**، ستجد جميع الصفحات اللازمة لتكوين سيرفرك. الخيارات المتاحة لتكوين سيرفرك مدرجة بالتفصيل أدناه. +في قسم **الإعدادات**، ستجد جميع الصفحات اللازمة لتكوين سيرفرك. الخيارات المتاحة لتكوين سيرفرك مذكورة بالتفصيل أدناه. @@ -137,24 +135,24 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; تحت قسم الإعدادات ستجد نظرة عامة على أكثر خيارات الإعداد شيوعًا لسيرفرك. تتضمن أيضًا شرحًا مختصرًا. يُنصح باستخدام صفحة الإعدادات خصوصًا للمبتدئين في إدارة السيرفر. -إذا كنت أكثر ثقة وترغب في إجراء تغييرات أدق، نوصي باستخدام محرر الإعدادات (Config Editor) بدلاً من ذلك. يمكنك العثور على مزيد من المعلومات حول هذا في فئة **الإعدادات**. +إذا كنت أكثر خبرة وترغب في إجراء تغييرات أدق، نوصي باستخدام محرر التكوين بدلاً من ذلك. يمكنك العثور على مزيد من المعلومات حول هذا في قسم **التكوينات**. -### الإعدادات المتقدمة (Configs) +### التكوينات -يتيح لك محرر ملفات الإعداد تعديل ملفات التكوين مباشرة من الموقع بالطريقة الكلاسيكية، بدون العرض المبسط. تتيح لك هذه الخاصية تخصيص إعدادات سيرفرك وضبطها حسب تفضيلاتك الشخصية. +يتيح لك محرر ملفات التكوين تعديل ملفات الإعداد مباشرة من الموقع بالطريقة الكلاسيكية، بدون العرض المبسط. تتيح لك هذه الخاصية تخصيص إعدادات سيرفرك وضبطها حسب تفضيلاتك الشخصية. -باستخدام المحرر، تحصل على وصول مباشر لجميع الخيارات المتاحة ويمكنك تخصيصها بدقة. هذا مفيد بشكل خاص للمستخدمين المتقدمين الذين يريدون تحكمًا كاملاً في إعدادات سيرفرهم ويعرفون بالضبط التغييرات التي يرغبون في إجرائها. +باستخدام المحرر، تحصل على وصول مباشر إلى جميع الخيارات المتاحة ويمكنك تخصيصها بدقة. هذا مفيد بشكل خاص للمستخدمين المتقدمين الذين يريدون تحكمًا كاملاً في إعدادات سيرفرهم ويعرفون بالضبط التغييرات التي يرغبون في إجرائها. :::warning -هل لاحظت أن بعض تغييراتك تُكتب جزئيًا فوقها؟ يرجى العلم أن بعض قيم الخيارات مأخوذة من صفحة الإعدادات. إذا أردت إجراء هذه التغييرات مباشرة في الإعدادات المتقدمة، يجب أولًا تعطيل الخيارات ذات الصلة في صفحة الإعدادات. +هل لاحظت أن بعض تغييراتك تُكتب جزئيًا فوقها؟ يرجى العلم أن بعض قيم الخيارات تُؤخذ من صفحة الإعدادات. إذا أردت إجراء هذه التغييرات مباشرة في التكوين، يجب أولاً تعطيل الخيارات المعنية في صفحة الإعدادات. ::: ### الألعاب -تحت قسم **الألعاب** لديك دائمًا إمكانية تغيير نسخة اللعبة الموجودة على سيرفرك أو تثبيت لعبة أخرى بشكل عام. يمكن اختيار الألعاب التي لها نفس سعر الفتحات مباشرة تحت **الألعاب المتاحة**. بالنسبة لجميع الألعاب الأخرى، يجب تعديل سعر الفتحات أولًا. يمكنك العثور على مزيد من المعلومات حول هذا في دليل [تغيير اللعبة](gameserver-gameswitch.md). +تحت قسم **الألعاب** لديك دائمًا إمكانية تغيير نسخة اللعبة الموجودة أو تثبيت لعبة أخرى بشكل عام. يمكن اختيار الألعاب التي لها نفس سعر الفتحة مباشرة تحت **الألعاب المتاحة**. بالنسبة لجميع الألعاب الأخرى، يجب تعديل سعر الفتحة أولاً. يمكنك العثور على مزيد من المعلومات حول هذا في دليل [تغيير اللعبة](gameserver-gameswitch.md). ![](https://screensaver01.zap-hosting.com/index.php/s/xkkECw7o52fAMWk/preview) @@ -166,19 +164,19 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ![](https://screensaver01.zap-hosting.com/index.php/s/BH2JzyRHTeLdKHz/preview) -علاوة على ذلك، يمكنك أيضًا تفعيل خاصية الإشعارات عبر البريد الإلكتروني للتحديثات التلقائية لتبقى على اطلاع دائم بالتحديثات. +علاوة على ذلك، يمكنك أيضًا تفعيل ميزة الإشعارات عبر البريد الإلكتروني للتحديثات التلقائية لتبقى على اطلاع دائم بالتحديثات. ### المهام المجدولة -أنشئ مهامًا مجدولة تعمل تلقائيًا في أوقات محددة لأتمتة عمليات مختلفة على سيرفرك. يمكنك تحديد ما إذا كانت المهمة ستعمل مرة واحدة أو تتكرر حسب الحاجة. تشمل أنواع المهام المدعومة بدء، إيقاف أو إعادة تشغيل الخدمات، إعادة تشغيل السيرفر إذا كان متصلًا، إنشاء نسخ احتياطية أو تنفيذ أوامر مخصصة. +أنشئ مهامًا مجدولة تعمل تلقائيًا في أوقات محددة لأتمتة عمليات مختلفة على سيرفرك. يمكنك تحديد ما إذا كان يجب تشغيل المهمة مرة واحدة أو تكرارها حسب الحاجة. تشمل أنواع المهام المدعومة بدء، إيقاف أو إعادة تشغيل الخدمات، إعادة تشغيل السيرفر إذا كان متصلًا، إنشاء نسخ احتياطية أو تنفيذ أوامر مخصصة. ![](https://screensaver01.zap-hosting.com/index.php/s/P6DeWiRC3tDqG2z/preview) ### مخطط إعادة التشغيل -هل تريد جدولة إعادة تشغيل السيرفر في أوقات محددة؟ يتيح لك مخطط إعادة التشغيل إعداد عمليات إعادة تشغيل تلقائية مجدولة لسيرفر ألعابك. مع هذه الميزة، يمكنك ضبط إعادة التشغيل في أوقات محددة أو بفواصل منتظمة. +هل تريد جدولة إعادة تشغيل السيرفر في أوقات محددة؟ يتيح لك مخطط إعادة التشغيل إعداد إعادة تشغيل تلقائية مجدولة لسيرفر ألعابك. مع هذه الميزة، يمكنك ضبط إعادة التشغيل في أوقات محددة أو بفواصل منتظمة. ![](https://screensaver01.zap-hosting.com/index.php/s/Y6WciDS7YP98P4m/preview) @@ -188,7 +186,7 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ## الأدوات -في قسم **الأدوات** في لوحة التنقل الخاصة بك، ستجد مجموعة من العناصر الفرعية التي تساعدك في إدارة سيرفرك. تشمل هذه **متصفح FTP**، **قواعد البيانات**، و**النسخ الاحتياطية**. فيما يلي، ستحصل على مقدمة مفصلة لهذه المجالات المختلفة. +في قسم **الأدوات** في لوحة التنقل الخاصة بك، ستجد مجموعة من العناصر الفرعية التي تساعدك في إدارة سيرفرك. تشمل هذه **متصفح FTP**، **قواعد البيانات**، و**النسخ الاحتياطية**. في ما يلي، ستحصل على مقدمة مفصلة لهذه المجالات المختلفة. @@ -198,15 +196,15 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; ![](https://screensaver01.zap-hosting.com/index.php/s/sX85i9HyzR9wmAM/preview) -**FileZilla:** FileZilla هو على الأرجح أبسط وأشهر عميل FTP. فقط قم بتثبيته، شغله وأدخل بيانات الدخول في الشريط العلوي التي تجدها في هذه الصفحة أعلاه. بعد نقرة سريعة على "اتصال"، ستكون متصلًا بالسيرفر ويمكنك إدارة الملفات. +**FileZilla:** FileZilla هو على الأرجح أبسط وأشهر عميل FTP. فقط قم بتثبيته، شغّله وأدخل بيانات الدخول الخاصة بك في الشريط العلوي التي تجدها في هذه الصفحة أعلاه. بعد نقرة سريعة على "اتصال"، ستكون متصلًا بالسيرفر ويمكنك إدارة الملفات. -**WinSCP:** WinSCP مخصص في الأصل لـ SCP وSFTP (نسخ مشفرة من بروتوكول نقل الملفات FTP)، لكنه يتعامل جيدًا مع FTP العادي أيضًا. البرنامج أكثر شمولًا من FileZilla ويناسب المستخدمين المتقدمين أكثر. +**WinSCP:** في الأصل، WinSCP مخصص لـ SCP وSFTP (نسخ مشفرة من بروتوكول نقل الملفات FTP)، لكنه يتعامل جيدًا مع FTP العادي أيضًا. البرنامج أكثر شمولًا من FileZilla ومناسب أكثر للمستخدمين المتقدمين. ### قواعد البيانات -بالإضافة إلى منتجات سيرفر الألعاب، نقدم أيضًا 10 قواعد بيانات مدمجة. هذه القواعد ضرورية، على سبيل المثال، عندما يحتاج الأمر إلى تخزين بيانات في قاعدة بيانات. تحت قسم **قواعد البيانات**، يمكنك إنشاء قاعدة بيانات وعرض بيانات الدخول. لديك أيضًا خيار تفعيل النسخ الاحتياطية واستيراد نسخ قواعد بيانات موجودة. +بالإضافة إلى منتجات سيرفر الألعاب، نقدم أيضًا 10 قواعد بيانات مدمجة. هذه القواعد ضرورية، على سبيل المثال، عندما تحتاج البيانات إلى التخزين في قاعدة بيانات. تحت قسم **قواعد البيانات**، يمكنك إنشاء قاعدة بيانات وعرض بيانات الدخول. لديك أيضًا خيار تفعيل النسخ الاحتياطي واستيراد نسخ قواعد بيانات موجودة. ![](https://screensaver01.zap-hosting.com/index.php/s/WFLwCbZSQfYjrmD/preview) @@ -216,20 +214,20 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; تحت قسم **النسخ الاحتياطية**، لديك خيار إنشاء نسخ احتياطية يدوية وتلقائية لسيرفرك وقاعدة البيانات المرتبطة به. هذا يسهل استعادة بياناتك في حال حدوث أي مشاكل أو فقدان بيانات. -في الإعدادات، يمكنك تحديد ما إذا كان يجب إنشاء النسخ الاحتياطية تلقائيًا وهل يتم ذلك يوميًا أو أسبوعيًا. بالإضافة إلى ذلك، يمكنك تحديد ما إذا كان يجب حذف أقدم النسخ الاحتياطية عند الحاجة، مثلًا عند نفاد مساحة التخزين المتاحة. +في الإعدادات، يمكنك تحديد ما إذا كان يجب إنشاء النسخ الاحتياطية تلقائيًا وإذا ما كان ذلك يوميًا أو أسبوعيًا. بالإضافة إلى ذلك، يمكنك تحديد ما إذا كان يجب حذف أقدم النسخ الاحتياطية عند الحاجة، مثلًا عندما يصبح مساحة التخزين المتاحة محدودة. ![](https://screensaver01.zap-hosting.com/index.php/s/nm9za5LTMEcNsga/preview) -نوفر 10 جيجابايت من مساحة التخزين على خادم التخزين للنسخ الاحتياطية لمنتجات سيرفر الألعاب بشكل افتراضي. إذا كنت بحاجة إلى مساحة أكبر، يمكن ترقيتها مقابل رسوم. بهذه الطريقة تضمن أن لديك دائمًا مساحة كافية لنسخك الاحتياطية ولا تزال قادرًا على الوصول إلى النسخ القديمة عند الحاجة. +نوفر 10 جيجابايت من مساحة التخزين على خادم التخزين للنسخ الاحتياطية لمنتجات سيرفر الألعاب بشكل افتراضي. إذا كنت بحاجة إلى مساحة تخزين أكبر، يمكن ترقيتها مقابل رسوم. بهذه الطريقة تضمن أن لديك دائمًا مساحة كافية لنسخك الاحتياطية ولا تزال قادرًا على الوصول إلى النسخ الأقدم عند الحاجة. ## روابط إضافية -في قسم **روابط إضافية**، ستجد روابط أخرى ذات صلة بمنتجك. +في قسم **روابط إضافية**، ستجد روابط أخرى ذات صلة بمنتجك. ### الأسئلة المتكررة يوفر قسم **الأسئلة المتكررة** نظرة عامة على أكثر الأسئلة التي يطرحها عملاؤنا. هنا، ستجد إجابات مفيدة ومعلومات مفصلة حول مواضيع مختلفة لمساعدتك بسرعة وكفاءة. ### توثيق ZAP-Hosting -نقدم توثيقًا شاملاً لمنتجاتنا، يعمل كقاعدة معرفة لأكثر الأسئلة والمخاوف شيوعًا. هناك ستجد أدلة ومساعدات متنوعة حول مواضيع مختلفة تساعدك في استخدام وإدارة منتجك. +نقدم توثيقًا شاملاً لمنتجاتنا، والذي يعمل كقاعدة معرفة لأكثر الأسئلة والاهتمامات شيوعًا. هناك ستجد أدلة ومساعدات متنوعة في مواضيع مختلفة تساعدك في استخدام وإدارة منتجك. ![](https://screensaver01.zap-hosting.com/index.php/s/n48ct6aZBrNq7eT/preview) @@ -239,7 +237,7 @@ import InlineVoucher from '@site/src/components/InlineVoucher'; - تغييرات الخدمة مثل التحديثات أو الميزات الجديدة - إعلانات عن صيانة محتملة أو مشاكل تقنية - عروض خاصة وترقيات تمنحك فوائد أو خصومات حصرية -- معلومات أخرى ذات صلة قد تؤثر على استخدام خدمتك +- معلومات أخرى ذات صلة قد تكون مهمة لاستخدام خدمتك بمتابعة قسم **الأخبار** بانتظام، ستبقى على اطلاع وتتمكن من تعديل خدمتك بما يضمن الاستفادة القصوى من سيرفرك. diff --git a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-gamemode.md b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-gamemode.md new file mode 100644 index 000000000..2cfd4958d --- /dev/null +++ b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-gamemode.md @@ -0,0 +1,76 @@ +--- +id: hytale-gamemode +title: "Hytale: إعداد وضع اللعبة" +description: "اكتشف كيف تحمي سيرفر Hytale الخاص بك من خلال إدارة وصول اللاعبين باستخدام ميزات القائمة البيضاء وحماية تجربتك في اللعب → تعلّم المزيد الآن" +sidebar_label: القائمة البيضاء +services: + - gameserver-hytale +--- + +import YouTube from '@site/src/components/YouTube/YouTube'; +import InlineVoucher from '@site/src/components/InlineVoucher'; + +## مقدمة + +تتيح لك سيرفرات Hytale ضبط إعدادات اللعب مثل وضع اللعبة الذي يحدد تجربة اللاعب. تغيير وضع اللعبة يتيح لك تخصيص سيرفرك لأسلوب لعب معين أو تفضيلات مجتمع محدد. + +:::info إشعار الوصول المبكر + +تم إصدار Hytale في 13 يناير 2026 وهو متاح حالياً في مرحلة الوصول المبكر. وبما أن اللعبة لا تزال في مرحلة تطوير نشطة، قد تستمر برامج السيرفر، وملفات الإعداد، ودعم التعديلات، وإجراءات التثبيت في التغير مع مرور الوقت. + +::: + +![img](https://screensaver01.zap-hosting.com/index.php/s/KsesqALHY3AgKHF/preview) + + + +## تغيير وضع اللعبة + +### الكونسول المباشر +يمكن تغيير وضع اللعبة أثناء تشغيل السيرفر باستخدام الكونسول المباشر أو أوامر داخل اللعبة، بشرط توفر الأذونات اللازمة. تتيح هذه الطريقة للمشرفين تبديل وضع اللعبة دون الحاجة لتعديل ملفات الإعداد. + +يؤدي استخدام أمر الكونسول إلى تحديث وضع اللعبة النشط فوراً لجلسة السيرفر الحالية. حسب إعداد السيرفر، قد يستمر التغيير حتى إعادة التشغيل التالية أو يعود إلى القيمة المحددة في ملف الإعداد. + +``` +/gamemode +``` + +تحدد قيمة `GameMode` وضع اللعبة الذي يُطبق عند بدء تشغيل السيرفر. يمكن تعديل هذه القيمة حسب تجربة اللعب التي ترغب بها. + +القيم الشائعة لوضع اللعبة تشمل: + +- `Creative` للبناء الحر وإنشاء المحتوى بدون قيود +- `Adventure` للعب منظم مع تقدم محدد وقواعد تفاعل معينة + +بعد تغيير قيمة وضع اللعبة، يجب إعادة تشغيل السيرفر لتطبيق الإعداد الجديد. + + + +### ملف الإعداد + +يمكن تحديد وضع اللعبة مباشرة في ملف إعداد السيرفر. +تُوصى هذه الطريقة عندما تريد أن يبدأ السيرفر دائماً بوضع لعبة معين أو عند إعداد سيرفر جديد. + +يمكن الوصول إلى ملف الإعداد من خلال لوحة التحكم الخاصة بالتأجير أو مدير الملفات. داخل هذا الملف، يوجد إعداد يتحكم في وضع اللعبة النشط المستخدم عند بدء تشغيل السيرفر. بعد تعديل هذه القيمة، يجب إعادة تشغيل السيرفر لتفعيل التغيير. + +``` +"Defaults": { +"World": "default", +"GameMode": "Adventure" +}, +``` + +تحدد قيمة `GameMode` وضع اللعبة الذي يُطبق عند بدء تشغيل السيرفر. يمكن تعديل هذه القيمة حسب تجربة اللعب التي ترغب بها. + +القيم الشائعة لوضع اللعبة تشمل: + +- `Creative` للبناء الحر وإنشاء المحتوى بدون قيود +- `Adventure` للعب منظم مع تقدم محدد وقواعد تفاعل معينة + +بعد تغيير قيمة وضع اللعبة، يجب إعادة تشغيل السيرفر لتطبيق الإعداد الجديد. + + + +## الخلاصة + +من خلال ضبط وضع اللعبة إما عبر ملف إعداد السيرفر أو الكونسول المباشر، يمكنك التحكم بدقة في تجربة اللعب على سيرفر Hytale الخاص بك. لأي أسئلة أو مساعدة إضافية، لا تتردد في التواصل مع فريق الدعم لدينا، المتوفر يومياً لمساعدتك! 🙂 \ No newline at end of file diff --git a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-mods.md b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-mods.md index ee5e64449..c22fb30ab 100644 --- a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-mods.md +++ b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-mods.md @@ -19,23 +19,23 @@ import items from '@site/data/lists/hytale-mods.json'; سواء كنت تريد تقدم أسرع، عناصر بقاء أعمق، خيارات بناء أكثر، أحداث مخصصة، أو قواعد سيرفر فريدة، المودات تعطيك الأدوات لتشكيل التجربة وجعل عالمك مميز. -:::info -من المقرر إصدار Hytale في 13 يناير 2026. بما أن ملفات السيرفر الرسمية، أدوات التعديل، وإجراءات التثبيت قد تتغير في المرحلة الأولى بعد الإطلاق، قد تصبح أجزاء من هذا الدليل قديمة. +:::info إشعار الوصول المبكر + +تم إصدار Hytale في 13 يناير 2026 وهو متاح حالياً في مرحلة الوصول المبكر. وبما أن اللعبة لا تزال في طور التطوير النشط، قد تستمر برامج السيرفر، ملفات التكوين، دعم المودات، وعمليات التثبيت في التغير مع الوقت. -سيتم تحديث الصفحة بمجرد توفر معلومات مؤكدة ومستقرة حول دعم المودات، صيغ الملفات ومتطلبات الإعداد ::: ## تثبيت المودات -يمكن تثبيت المودات بإضافتها مباشرة إلى ملفات السيرفر. ابدأ بتحميل المودات المطلوبة بصيغة `.zip` أو `.jar` من مصادر موثوقة مثل CurseForge. +يمكن تثبيت المودات عن طريق إضافتها مباشرة إلى ملفات السيرفر. ابدأ بتحميل المودات المطلوبة بصيغة `.zip` أو `.jar` من مصادر موثوقة مثل CurseForge. -بعد التحميل، اتصل بسيرفرك وافتح مجلد `mods/` في جذر السيرفر. ارفع ملفات المودات إلى هذا المجلد بدون فك الضغط أو تعديلها. بعد وضع كل المودات، أعد تشغيل السيرفر ليتم تحميلها وتفعيلها. +بعد التحميل، اتصل بسيرفرك وافتح مجلد `mods/` في جذر السيرفر. ارفع ملفات المودات إلى هذا المجلد دون فك الضغط أو تعديلها. بعد وضع جميع المودات، أعد تشغيل السيرفر ليتم تحميلها وتفعيلها. -## مودات شهيرة +## المودات الشهيرة -لا تزال تبحث عن المودات المثالية لسيرفرك؟ تصفح قائمتنا المختارة بعناية لأكثر المودات شعبية وتوصية لتعزيز تجربتك وإضافة اللمسة النهائية التي يستحقها سيرفرك. استلهم وابحث عن الإضافات التي تناسب مشروعك بالضبط. +لا تزال تبحث عن المودات المثالية لسيرفرك؟ تصفح قائمتنا المختارة بعناية لأشهر وأفضل المودات الموصى بها لتعزيز طريقة لعبك ومنح سيرفرك اللمسة النهائية التي يستحقها. استلهم وابحث عن الإضافات التي تناسب مشروعك بالضبط. diff --git a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-permissions.md b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-permissions.md new file mode 100644 index 000000000..73f1f4f68 --- /dev/null +++ b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-permissions.md @@ -0,0 +1,145 @@ +--- +id: "hytale-permissions" +title: "Hytale: إدارة أذونات المستخدمين والمجموعات" +description: "إدارة أذونات المستخدمين والمجموعات على سيرفر Hytale الخاص بك → تعلّم المزيد الآن" +sidebar_label: اتصال بطيء / العالم لا يحمل +services: +- gameserver-hytale +--- + +import InlineVoucher from '@site/src/components/InlineVoucher'; + + + +## مقدمة + +إدارة الأذونات على سيرفر Hytale تتيح لك التحكم فيما يمكن للاعبين فعله وما لا يمكنهم فعله. هذا يشمل تعيين مستويات وصول مختلفة للاعبين الموثوقين، والمشرفين، والإداريين. إعداد الأذونات بشكل صحيح أمر ضروري للحفاظ على بيئة سيرفر متوازنة وآمنة حيث يمكن للاعبين الاستمتاع باللعبة بدون استغلالات أو إساءات غير مقصودة. + +يدعم برنامج سيرفر Hytale مستويات أذونات هرمية تحدد الأوامر والإجراءات التي يمكن لكل لاعب تنفيذها. يمكن إدارة هذه الأذونات عبر الكونسول المباشر أو من خلال إعدادات التكوين حسب إعداد سيرفرك. + +:::info إشعار الوصول المبكر + +تم إصدار Hytale في 13 يناير 2026 وهو متاح حالياً في مرحلة الوصول المبكر. وبما أن اللعبة لا تزال في مرحلة تطوير نشطة، قد تستمر برامج السيرفر، وملفات التكوين، ودعم التعديلات، وإجراءات التثبيت في التغير مع مرور الوقت. + +::: + + + + + +## نظرة عامة على مستويات الأذونات + +الأذونات تحدد الإجراءات التي يُسمح للاعب بأدائها على السيرفر. على أبسط مستوى، يمتلك اللاعبون العاديون أذونات اللعب الأساسية فقط، مثل الحركة، والتفاعل مع العالم، والدردشة. أما المستويات الأعلى مثل مشغل أو مسؤول فتمنح الوصول لأوامر السيرفر التي تؤثر على طريقة اللعب، واللاعبين الآخرين، وتكوين السيرفر، وأدوات الإشراف. + +يتكون نظام الأذونات من مكونين رئيسيين: + +- **أذونات المستخدم** التي تُطبق مباشرة على لاعب معين +- **أذونات المجموعات** التي تسمح بتجميع الأذونات وتعيينها لعدة لاعبين دفعة واحدة + +يتم تعريف كل لاعب داخلياً بواسطة UUID، وهو مطلوب عند إدارة الأذونات عبر الأوامر. + + + +## إدارة أذونات المستخدم + +أذونات المستخدم تتيح لك منح أو سحب أذونات محددة للاعب واحد. + +### عرض أذونات المستخدم + +لعرض كل الأذونات المعينة مباشرة لمستخدم معين. هذا الأمر يعرض كل الأذونات المطبقة حالياً على المستخدم المحدد. + +``` +/perm user list +``` + + + +### إضافة أذونات لمستخدم + +لمنح أذونات واحدة أو أكثر مباشرة لمستخدم. سيتم إضافة الأذونات المحددة فوراً وتصبح فعالة بدون الحاجة لإعادة تشغيل السيرفر. + +``` +/perm user add +``` + + + +### إزالة أذونات من مستخدم + +لسحب أذونات من مستخدم. هذا الأمر يزيل فقط الأذونات المحددة مع ترك باقي الأذونات كما هي. + +``` +/perm user remove +``` + + + +## إدارة تعيينات مجموعات المستخدمين + +بالإضافة للأذونات المباشرة، يمكن للمستخدمين وراثة الأذونات عبر المجموعات. + +### عرض أذونات مجموعات المستخدم + +يعرض هذا الأمر المجموعات التي ينتمي إليها المستخدم حالياً. + +``` +/perm user group list +``` + + + +### إضافة مستخدم إلى مجموعة + +لتعيين مستخدم إلى مجموعة أذونات. بمجرد الإضافة، يرث المستخدم كل الأذونات المعرفة لتلك المجموعة. + +``` +/perm user group add +``` + + + +### إزالة مستخدم من مجموعة + +لإزالة مستخدم من مجموعة أذونات. بعد الإزالة، لن يحصل المستخدم على أذونات من تلك المجموعة. + +``` +/perm user group remove +``` + + + +## إدارة أذونات المجموعات + +المجموعات تسمح بإدارة الأذونات مركزياً وإعادة استخدامها عبر عدة مستخدمين. + +### عرض أذونات مجموعة + +لعرض كل الأذونات المعينة لمجموعة معينة. هذا الأمر يعطي نظرة شاملة على كل الأذونات المرتبطة بالمجموعة المحددة. + +``` +/perm group list +``` + + + +### إضافة أذونات لمجموعة + +لإضافة أذونات واحدة أو أكثر لمجموعة. كل المستخدمين المعينين لهذه المجموعة سيرثون الأذونات الجديدة فوراً. + +``` +/perm group add +``` + + + +### إزالة أذونات من مجموعة + +هذا الأمر يزيل فقط الأذونات المحددة من المجموعة دون التأثير على الأذونات الأخرى. + +``` +/perm group remove +``` + + + + \ No newline at end of file diff --git a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-troubleshooting-common-issues.md b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-troubleshooting-common-issues.md index 8bc613657..87ee76427 100644 --- a/i18n/ar/docusaurus-plugin-content-docs/current/hytale-troubleshooting-common-issues.md +++ b/i18n/ar/docusaurus-plugin-content-docs/current/hytale-troubleshooting-common-issues.md @@ -1,7 +1,7 @@ --- id: hytale-troubleshooting-common-issues title: "Hytale: المشاكل الشائعة" -description: "اكتشف كيفية استكشاف وحل مشاكل سيرفر Hytale الشائعة لتجربة لعب سلسة → تعلّم المزيد الآن" +description: "اكتشف كيفية استكشاف وحل مشاكل سيرفر ألعاب Hytale الشائعة لتجربة لعب سلسة → تعلّم المزيد الآن" sidebar_label: المشاكل الشائعة services: - gameserver-hytale @@ -12,84 +12,79 @@ import Button from '@site/src/components/Button'; ## مقدمة -إعداد وتشغيل سيرفر ألعاب Hytale الخاص بك يمكن أن يكون تجربة ممتعة ومثيرة. بينما يمكن أن يكون وسيلة رائعة لبناء بيئة لعب مخصصة ومجتمع خاص بك، فإنه يعني أيضًا تحمل المسؤولية عندما تحدث مشاكل. الأعطال، التأخير، ومشاكل التهيئة هي مشاكل شائعة قد يواجهها كل مالك سيرفر في مرحلة ما. +إعداد وتشغيل سيرفر ألعاب Hytale الخاص بك يمكن أن يكون تجربة مثيرة وممتعة جدًا. بينما يمكن أن يكون وسيلة رائعة لبناء بيئة لعب مخصصة ومجتمع خاص بك، فإنه يعني أيضًا تحمل المسؤولية عندما تحدث مشاكل. الأعطال، التأخير، ومشاكل التهيئة هي مشاكل شائعة قد يواجهها كل مالك سيرفر في مرحلة ما. -للتأكد من أنك تقضي وقتًا أقل في الإصلاح ووقتًا أكثر في الاستمتاع بسيرفرك، يسلط هذا القسم الضوء على أكثر المشاكل الشائعة التي يواجهها مالكو السيرفرات ويقدم حلولًا لمساعدتك على حلها بسرعة وفعالية. +لتقضي وقتًا أقل في الإصلاح ووقتًا أكثر في الاستمتاع بسيرفرك، يسلط هذا القسم الضوء على أكثر المشاكل الشائعة التي يواجهها مالكو السيرفرات ويقدم حلولًا لمساعدتك على حلها بسرعة وفعالية. -:::info -من المقرر إصدار Hytale في 13 يناير 2026. نظرًا لأن ملفات السيرفر الرسمية، وأدوات التعديل، وإجراءات التثبيت قد تتغير في المرحلة الأولى بعد الإطلاق، قد تصبح أجزاء من هذا الدليل قديمة. +:::info إشعار الوصول المبكر -سيتم تحديث الصفحة بمجرد توفر معلومات مؤكدة ومستقرة حول دعم التعديلات، صيغ الملفات ومتطلبات الإعداد. -::: +تم إصدار Hytale في 13 يناير 2026 وهو متاح حاليًا في مرحلة الوصول المبكر. وبما أن اللعبة لا تزال في مرحلة تطوير نشطة، فقد تستمر برامج السيرفر، ملفات التهيئة، دعم التعديلات، وإجراءات التثبيت في التغير مع مرور الوقت. +::: - - ## المشاكل والحلول -يمكن أن تختلف أسباب مشاكل السيرفر وغالبًا ما لا تكون واضحة على الفور. تعلّم كيفية استكشاف المشاكل النموذجية خطوة بخطوة والحفاظ على سير الأمور بسلاسة. +أسباب مشاكل السيرفر يمكن أن تختلف وغالبًا ما لا تكون واضحة على الفور. تعلّم كيفية استكشاف المشاكل النموذجية خطوة بخطوة وحافظ على سير الأمور بسلاسة. ### عام المشاكل العامة يمكن أن تشمل جميع أنواع المشاكل غير المتوقعة التي لا تندرج تحت فئة محددة. غالبًا ما تتعلق بالإعدادات الأساسية، الملفات المفقودة أو التهيئات الخاطئة البسيطة. يمكن عادةً إصلاحها بسرعة ببعض الفحوصات والتعديلات.
- السيرفر غير مرئي + السيرفر غير ظاهر -قد يحدث عدم ظهور السيرفر إذا لم يتم إكمال التهيئة بنجاح. قد يكون ذلك بسبب تهيئة خاطئة أو ملفات تالفة. يمكن عادةً تتبع مزيد من المعلومات في وحدة تحكم السيرفر أو ملفات السجل. بالإضافة إلى ذلك، يجب التأكد من عدم استخدام إعدادات فلترة خاطئة في قائمة السيرفرات، والتي قد تمنع ظهور السيرفر. +عدم ظهور السيرفر قد يحدث إذا لم تكتمل عملية التهيئة بنجاح. قد يكون ذلك بسبب تهيئة خاطئة أو ملفات تالفة. يمكن عادةً تتبع مزيد من المعلومات في وحدة تحكم السيرفر أو ملفات السجل. بالإضافة إلى ذلك، يجب التأكد من عدم استخدام إعدادات فلترة خاطئة في قائمة السيرفرات والتي قد تمنع ظهور السيرفر.
- ### الأعطال -لا شيء يفسد جلسة لعب جيدة أسرع من عطل غير متوقع. يمكن أن تحدث الأعطال بسبب برنامج السيرفر الخاطئ، الإضافات المعطوبة أو غير المتوافقة (مثل الإضافات، التعديلات، الموارد، أو الأُطُر)، تحميل النظام الزائد، أو التهيئات الخاطئة. +لا شيء يقطع جلسة لعب جيدة أسرع من عطل غير متوقع. يمكن أن تحدث الأعطال بسبب برنامج سيرفر معطوب، إضافات مكسورة أو غير متوافقة (مثل الإضافات، التعديلات، الموارد، أو الأُطُر)، تحميل زائد على النظام، أو تهيئات خاطئة.
الحفاظ على تحديث سيرفرك -تشغيل سيرفر ألعابك على أحدث إصدار ضروري للاستقرار، الأمان، والتوافق. تحديثات اللعبة، تغييرات الأُطُر، أو تعديلات أدوات الطرف الثالث يمكن أن تؤدي إلى مشاكل خطيرة إذا كان إصدار سيرفرك قديمًا. +تشغيل سيرفر ألعابك على أحدث إصدار ضروري للاستقرار، الأمان، والتوافق. تحديثات اللعبة، تغييرات الأُطُر، أو تعديلات على أدوات الطرف الثالث يمكن أن تؤدي إلى مشاكل خطيرة إذا كان إصدار سيرفرك قديمًا. -قد يواجه سيرفر الألعاب القديم أعطالًا، سلوكًا غير متوقع، أو حتى فشلًا في التشغيل تمامًا. +سيرفر ألعاب قديم قد يعاني من أعطال، سلوك غير متوقع، أو حتى فشل في التشغيل تمامًا. ![img](https://screensaver01.zap-hosting.com/index.php/s/JXLHyHeMJqErHLJ/preview) -
الإضافات المعطوبة/المشكلة (الأُطُر، الإضافات، التعديلات، الموارد) -غالبًا ما تكون الأعطال ناجمة عن إضافات معطوبة أو قديمة. سواء كانت أُطُر، إضافة، تعديل أو مورد، قد تنشأ مشاكل إذا لم تكن الإضافة متوافقة مع أحدث إصدار للعبة أو تحتوي على أخطاء في الكود. +غالبًا ما تكون الأعطال ناجمة عن إضافات معطوبة أو قديمة. سواء كانت أُطُر، إضافة، تعديل أو مورد، قد تظهر مشاكل إذا لم تكن الإضافة متوافقة مع أحدث إصدار للعبة أو تحتوي على أخطاء في الكود. -قد يؤدي ذلك إلى أعطال غير متوقعة في السيرفر، تجميد أو أخطاء، خاصة عند تفاعل عدة إضافات مشكلة. إذا كنت تشك في أن إضافة ما هي السبب، جرب تعطيلها مؤقتًا وتحقق مما إذا كان سيرفرك يبقى مستقرًا بدونها. هذه طريقة بسيطة لتحديد الإضافة التي تسبب المشاكل. +هذا قد يؤدي إلى أعطال غير متوقعة، تجميد، أو أخطاء في السيرفر، خصوصًا عند تفاعل عدة إضافات مشكلة معًا. إذا كنت تشك أن إضافة ما هي السبب، جرب تعطيلها مؤقتًا وتحقق مما إذا كان السيرفر يبقى مستقرًا بدونها. هذه طريقة بسيطة لتحديد الإضافة المسببة للمشكلة. -تأكد من أن جميع الإضافات التي تستخدمها محدثة، تتم صيانتها بنشاط ومختبرة للتوافق مع الإصدار الحالي للعبتك لتجنب الأعطال وفترات التوقف. +تأكد من أن جميع الإضافات التي تستخدمها محدثة، مدعومة بنشاط، ومختبرة للتوافق مع الإصدار الحالي للعبتك لتجنب الأعطال وفترات التوقف. -لعزل السبب الجذري لمشاكل الأعطال، غالبًا ما يكون من المفيد تعطيل المحتوى الإضافي مؤقتًا. ابدأ بإعداد بسيط وتحقق مما إذا استمرت المشكلة. إذا اختفت المشكلة، أعد إدخال الإضافات، التعديلات، أو الموارد تدريجيًا واحدًا تلو الآخر مع اختبار بعد كل خطوة. تساعد هذه الطريقة التدريجية في تحديد العنصر المحدد المسبب للمشكلة. هذه الطريقة لا تضيق نطاق المشتبه بهم بكفاءة فحسب، بل تضمن أيضًا أن يكون استكشاف الأخطاء الخاص بك قائمًا على أدلة وليس افتراضات. +لعزل السبب الجذري لمشاكل الأعطال، غالبًا ما يكون من المفيد تعطيل المحتوى الإضافي مؤقتًا. ابدأ بإعداد بسيط وتحقق مما إذا استمرت المشكلة. إذا اختفت المشكلة، أعد إدخال الإضافات، التعديلات، أو الموارد تدريجيًا واحدًا تلو الآخر مع اختبار بعد كل خطوة. هذه الطريقة التدريجية تساعد في تحديد العنصر المحدد المسبب للمشكلة. هذه الطريقة لا تضيق نطاق المشتبه بهم بكفاءة فحسب، بل تضمن أيضًا أن استكشاف الأخطاء يعتمد على أدلة وليس افتراضات.
### الأداء -أداء السيرفر السلس ضروري لتجربة لعب جيدة. تحدث مشاكل مثل التأخير، البطء أو الأعطال المفاجئة غالبًا عندما لا يكون إعداد السيرفر مثاليًا، أو الأجهزة لا تتوافق مع متطلبات اللعبة، أو الإضافات المثبتة تثقل النظام. +أداء السيرفر السلس ضروري لتجربة لعب جيدة. مشاكل مثل التأخير، البطء أو الأعطال المفاجئة غالبًا ما تحدث عندما لا يكون إعداد السيرفر مثاليًا، أو العتاد لا يتوافق مع متطلبات اللعبة، أو الإضافات المثبتة تثقل النظام. -الأسباب النموذجية تشمل تهيئة سيئة، موارد مفقودة أو إضافات وتعديلات غير محسّنة. فحص وتعديل هذه الجوانب يساعد في إصلاح معظم مشاكل الأداء ويحافظ على تشغيل لعبتك بشكل مستقر وسريع الاستجابة. +الأسباب النموذجية تشمل تهيئة سيئة، موارد مفقودة أو إضافات وتعديلات غير محسّنة. فحص وتعديل هذه الجوانب يساعد في إصلاح معظم مشاكل الأداء ويحافظ على تشغيل لعبتك بثبات واستجابة.
تهيئة السيرفر السيئة -الإعدادات الخاطئة أو غير المضبوطة جيدًا للسيرفر يمكن أن تؤدي إلى استخدام موارد أعلى وتسبب مشاكل في الأداء مثل التأخير أو التقطيع. تأكد من أن قيم التهيئة الخاصة بك تتطابق مع الإعدادات الموصى بها للعبتك وحجم السيرفر. راجعها وعدّلها إذا لزم الأمر للحفاظ على تشغيل سيرفرك بأقصى كفاءة ممكنة. +إعدادات السيرفر الخاطئة أو غير المضبوطة جيدًا يمكن أن تؤدي إلى استخدام موارد أعلى وتسبب مشاكل في الأداء مثل التأخير أو التقطيع. تأكد من أن قيم التهيئة تتطابق مع الإعدادات الموصى بها للعبتك وحجم السيرفر. راجعها وعدّلها إذا لزم الأمر للحفاظ على تشغيل السيرفر بأقصى كفاءة ممكنة. -يمكنك تغيير التهيئة من خلال الإعدادات المتاحة في قسم **الإعدادات** أو مباشرة في ملفات التهيئة ضمن **Configs** في واجهة الويب الخاصة بك. +يمكنك تغيير التهيئة من خلال الإعدادات المتاحة في قسم **الإعدادات** أو مباشرة في ملفات التهيئة تحت **Configs** في واجهة الويب الخاصة بك.
عدم تلبية متطلبات اللعبة -لضمان تشغيل سيرفر ألعابك بسلاسة وموثوقية، من الضروري اختيار تهيئة تتناسب مع احتياجات مشروعك المخطط له. تختلف المتطلبات بشكل كبير حسب اللعبة، استخدام الإضافات مثل التعديلات، الإضافات، أو الموارد، وعدد اللاعبين المتوقع. +لضمان تشغيل سيرفر ألعابك بسلاسة وموثوقية، من الضروري اختيار تهيئة تتناسب مع احتياجات مشروعك المخطط له. المتطلبات قد تختلف بشكل كبير حسب اللعبة، استخدام الإضافات مثل التعديلات، الإضافات، أو الموارد، وعدد اللاعبين المتوقع. تقدم ZAP-Hosting تهيئة دنيا موصى بها أثناء عملية الطلب. هذه الاقتراحات مبنية على حالات استخدام نموذجية ومصممة لمساعدتك على تجنب مشاكل الأداء الشائعة مثل التأخير، الأعطال، أو أوقات التحميل الطويلة. @@ -97,27 +92,25 @@ import Button from '@site/src/components/Button'; يرجى التأكد من اتباع هذه التوصيات أو الترقية إذا لزم الأمر لضمان الاستقرار الأمثل وأفضل تجربة ممكنة لك وللاعبين. هذه توصية دنيا. -اعتمادًا على نطاق مشروعك وكمية المحتوى الإضافي، قد تكون الموارد المطلوبة أعلى من البداية أو تزداد مع الوقت. في مثل هذه الحالات، ترقية باقة سيرفر الألعاب الخاصة بك هي طريقة مباشرة لضمان استمرار الأداء والاستقرار. +اعتمادًا على نطاق مشروعك وكمية المحتوى الإضافي، قد تكون الموارد المطلوبة أعلى من البداية أو تزداد مع الوقت. في مثل هذه الحالات، ترقية باقة سيرفر ألعابك هي طريقة سهلة لضمان استمرار الأداء والاستقرار.
الإضافات غير المحسّنة (الأُطُر، الإضافات، التعديلات، الموارد) -ليست كل الإضافات مصممة مع مراعاة الأداء. سواء كانت أُطُر، إضافة، تعديل، أو مورد، التنفيذ السيء يمكن أن يؤدي إلى مشاكل أداء كبيرة على سيرفرك. في كثير من الحالات، قد تعمل الوظيفة المقصودة لكن طريقة التنفيذ غير فعالة، معقدة بشكل مفرط أو تسبب حملًا غير ضروري على موارد السيرفر. +ليست كل الإضافات مصممة مع مراعاة الأداء. سواء كانت أُطُر، إضافة، تعديل، أو مورد، التنفيذ السيء قد يؤدي إلى مشاكل أداء كبيرة على سيرفرك. في كثير من الحالات، قد تعمل الوظيفة المقصودة لكن طريقة التنفيذ غير فعالة، معقدة بشكل مفرط أو تسبب حملًا غير ضروري على موارد السيرفر. -يمكن أن يؤدي ذلك إلى استخدام عالي لوحدة المعالجة المركزية، تسريبات في الذاكرة، تأخير، أو حتى أعطال، خاصة عند تفاعل عدة مكونات غير محسّنة. تأكد دائمًا من أن الإضافات تتم صيانتها بنشاط، موثقة جيدًا، ومختبرة من حيث الأداء. عند الشك، استشر تعليقات المجتمع أو راقب أداء السيرفر لتحديد العناصر المشكلة. +هذا يمكن أن يؤدي إلى استخدام عالي لوحدة المعالجة المركزية، تسريبات في الذاكرة، تأخير، أو حتى أعطال، خصوصًا عند تفاعل عدة مكونات غير محسّنة. تأكد دائمًا من أن الإضافات مدعومة بنشاط، موثقة جيدًا، ومختبرة من حيث الأداء. عند الشك، استشر تعليقات المجتمع أو راقب أداء السيرفر لتحديد العناصر المشكلة. -لعزل السبب الجذري لمشاكل الأداء، غالبًا ما يكون من المفيد تعطيل المحتوى الإضافي مؤقتًا. ابدأ بإعداد بسيط وتحقق مما إذا استمرت المشكلة. إذا اختفت المشكلة، أعد إدخال الإضافات، التعديلات، أو الموارد تدريجيًا واحدًا تلو الآخر مع اختبار بعد كل خطوة. تساعد هذه الطريقة التدريجية في تحديد العنصر المحدد المسبب للمشكلة، سواء كان تعارضًا، تسريب ذاكرة، أو استخدام مفرط للموارد. +لعزل السبب الجذري لمشاكل الأداء، غالبًا ما يكون من المفيد تعطيل المحتوى الإضافي مؤقتًا. ابدأ بإعداد بسيط وتحقق مما إذا استمرت المشكلة. إذا اختفت المشكلة، أعد إدخال الإضافات، التعديلات، أو الموارد تدريجيًا واحدًا تلو الآخر مع اختبار بعد كل خطوة. هذه الطريقة التدريجية تساعد في تحديد العنصر المحدد المسبب للمشكلة، سواء كان تعارضًا، تسريب ذاكرة، أو استخدام مفرط للموارد. -هذه الطريقة لا تضيق نطاق المشتبه بهم بكفاءة فحسب، بل تضمن أيضًا أن يكون استكشاف الأخطاء الخاص بك قائمًا على أدلة وليس افتراضات. +هذه الطريقة لا تضيق نطاق المشتبه بهم بكفاءة فحسب، بل تضمن أيضًا أن استكشاف الأخطاء يعتمد على أدلة وليس افتراضات.
- - ### الشبكة -مشاكل الشبكة يمكن أن تؤدي إلى تأخير، بطء أو انقطاع الاتصال. يمكن أن تكون لهذه المشاكل أسباب مختلفة لكنها عادةً ما تُحل بالإعدادات الصحيحة وتدابير الأمان المناسبة. +مشاكل الشبكة يمكن أن تؤدي إلى تأخير، بطء أو انقطاع الاتصال. هذه المشاكل قد يكون لها أسباب مختلفة لكنها عادةً ما تُحل بالإعدادات الصحيحة وتدابير الأمان المناسبة.
ارتفاعات Ping، التأخير وبطء الشبكة @@ -126,46 +119,33 @@ import Button from '@site/src/components/Button'; يمكن أن تحدث أيضًا عندما يكون السيرفر محملاً بعدد كبير من اللاعبين أو سكربتات وإضافات تستهلك موارد كثيرة. مشاكل الشبكة مثل التوجيه السيء، التحميل الخارجي، أو استضافة السيرفر بعيدًا عن قاعدة اللاعبين يمكن أن تزيد من زمن الاستجابة. -بالإضافة إلى ذلك، العمليات الخلفية، اتصالات الإنترنت غير المستقرة، فقدان الحزم، وبرمجيات السيرفر القديمة أو غير المضبوطة يمكن أن تسهم جميعها في مشاكل أداء ملحوظة أثناء اللعب. - -إذا كنت تعاني من تأخير أو Ping عالي على سيرفرك، هناك بعض الخطوات البسيطة التي يمكنك اتخاذها لتحسين الأداء. أولًا، تأكد من أن سيرفرك يفي أو يتجاوز المواصفات الموصى بها للعبتك ومشروعك. اختيار موقع خادم قريب من قاعدة اللاعبين يمكن أن يساعد أيضًا في تقليل زمن الاستجابة. +بالإضافة إلى ذلك، العمليات الخلفية، اتصالات الإنترنت غير المستقرة، فقدان الحزم، وبرامج السيرفر القديمة أو غير المهيأة بشكل صحيح يمكن أن تسهم جميعها في مشاكل أداء ملحوظة أثناء اللعب. -إذا كنت تشك في أن مشاكل التوجيه أو مشاكل الشبكة الخارجية تسبب التأخير، لا تتردد في الاتصال بفريق الدعم لدينا. سيساعدونك في تحليل الوضع وإيجاد أفضل حل ممكن. +إذا كنت تعاني من تأخير أو Ping عالي على سيرفرك، هناك بعض الخطوات البسيطة التي يمكنك اتخاذها لتحسين الأداء. أولًا، تأكد من أن سيرفرك يفي أو يتجاوز المواصفات الموصى بها للعبتك ومشروعك. اختيار موقع سيرفر قريب من قاعدة اللاعبين يمكن أن يساعد أيضًا في تقليل زمن الاستجابة. +إذا كنت تشك أن مشاكل التوجيه أو مشاكل الشبكة الخارجية تسبب التأخير، لا تتردد في التواصل مع فريق الدعم لدينا. سيساعدونك في تحليل الوضع وإيجاد أفضل حل ممكن.
هجمات DDoS وغيرها من تهديدات الشبكة -يمكن أن تصبح سيرفرات الألعاب أحيانًا هدفًا لنشاطات شبكية خبيثة، وأبرزها هجمات حجب الخدمة الموزعة (DDoS). هذه الهجمات تغمر السيرفر بحركة مرور زائدة، مما يسبب تأخير، فقدان الاتصال، أو حتى توقف كامل. في حالات أخرى، قد يحاول المهاجمون استغلال ثغرات الشبكة أو تعطيل استقرار السيرفر من خلال محاولات اتصال متكررة أو أنماط بيانات غير عادية. +سيرفرات الألعاب قد تصبح أحيانًا هدفًا لنشاطات شبكية خبيثة، أبرزها هجمات حجب الخدمة الموزعة (DDoS). هذه الهجمات تغمر السيرفر بحركة مرور زائدة، مما يسبب تأخير، فقدان الاتصال، أو حتى توقف كامل. في حالات أخرى، قد يحاول المهاجمون استغلال ثغرات الشبكة أو تعطيل استقرار السيرفر من خلال محاولات اتصال متكررة أو أنماط بيانات غير عادية. -بينما معظم هذه التهديدات خارجة عن سيطرة المستخدم العادي، توفر ZAP-Hosting أنظمة حماية وتخفيف مدمجة لحماية سيرفرك من الهجمات الشائعة والمتقدمة. إذا كنت تشك في أن سيرفرك مستهدف مما يسبب أي مشاكل، اتصل بفريق الدعم لدينا للمساعدة والإرشاد. +بينما معظم هذه التهديدات خارجة عن سيطرة المستخدم العادي، تقدم ZAP-Hosting أنظمة حماية وتخفيف مدمجة لتحصين سيرفرك من الهجمات الشائعة والمتقدمة. إذا كنت تشك أن سيرفرك مستهدف مما يسبب مشاكل، تواصل مع فريق الدعم لدينا للمساعدة والإرشاد.
+## تدابير وقائية - - - - -## تدابير وقائية - -النسخ الاحتياطية المنتظمة يمكن أن توفر عليك الكثير من التوتر والقلق. أنشئ نسخًا احتياطية منتظمة لضمان أنه في حالة حدوث أي مشكلة، لا يزال لديك نسخة احتياطية من إصدار أقدم عندما كان كل شيء يعمل. نحن نوفر [حل النسخ الاحتياطي](gameserver-backups.md) لسيرفرات ألعاب Hytale الخاصة بنا، والذي يمكنك استخدامه لإنشاء نسخ احتياطية يدوية أو مجدولة تلقائيًا. - - +النسخ الاحتياطية المنتظمة يمكن أن توفر عليك الكثير من التوتر والقلق. أنشئ نسخًا احتياطية منتظمة لضمان أنه في حال حدوث أي مشكلة، لا يزال لديك نسخة من إصدار أقدم عندما كان كل شيء يعمل. نحن نوفر [حل النسخ الاحتياطي](gameserver-backups.md) لسيرفرات ألعاب Hytale الخاصة بنا، والذي يمكنك استخدامه لإنشاء نسخ احتياطية يدوية أو مجدولة تلقائيًا.