Documentation for Unreal Engine plugins by metyatech
Server Manage Tool configures map-specific addresses and launches the complete configured local server group during PIE only after every required UDP port passes preflight. It does not build, deploy, or host a production dedicated server.
Version: 1.1.2
Server Manage Tool provides map-specific server address settings, a Server Mode menu in the Unreal Editor Play menu, and runtime Blueprint functions for address lookup and server exit requests.
The plugin contains three modules:
ServerModePlayMenu: editor menu, Local Launch, and managed-process cleanupServerInfoSettingsModule: map and server-address configurationServerManageLibrary: runtime Blueprint functions.uproject and maps referenced by full package names.-server.Version 1.1.2 was verified on UE 5.8 Win64 with a Blueprint-only host, a real C++ game project in Development and Shipping, and packaged Development and Shipping AddressAndExit runs. A dedicated TargetType.Server executable is not provided or verified. This release confirms that the historical Udon-Tobira Git identity and the current metyatech identity represent the same developer, and normalizes Source copyright notices without changing product behavior or the Blueprint API.
Edit > Plugins.Place the plugin at:
<Project>/Plugins/ServerManageTool
Regenerate project files or use the project’s normal source build workflow, then restart the editor after module changes.
Project Settings > Project > Servers.Server List entry per server map./Game/Maps/Lobby.Server Address used by Project Setting mode.The plugin resolves an address; it does not connect the client automatically.
GetServerAddress(Map) and RequestServerExit().Project Settings > Project > Servers contains Server List.
| Field | Meaning |
|---|---|
Map Name |
Exact full Unreal package name, such as /Game/Maps/Lobby. |
Server Address |
Address returned in Project Setting mode. |
In Local Launch mode, every configured entry is launched. Ports begin at fixed base port 7777 and follow list order:
Entry 0: 7777
Entry 1: 7778
Entry 2: 7779
Reordering entries changes their Local Launch ports. Before any process starts, all assigned UDP ports are checked. If one is unavailable, the group is not partially launched.
GetServerAddress(Map) finds an exact configured map entry. Project Setting mode returns the configured address. Local Launch returns 127.0.0.1:<assigned port>. A null map or missing exact entry returns an empty string and logs an error.
RequestServerExit() requests the current process to exit its main loop. Use it only on the dedicated-server side; do not call it casually from a client. The plugin does not guarantee a particular operating-system exit code.
At PIE begin, the plugin reads all entries, assigns ports, performs UDP preflight, launches the full group when preflight passes, and validates each server’s actual bound port. At PIE end, managed server processes are cleaned up. Module shutdown also clears managed server ownership.
The Output Log markers are:
SMT_PORT_PREFLIGHT_PASSED
SMT_PORT_PREFLIGHT_FAILED
SMT_SERVER_PROCESS_LAUNCH_FAILED
SMT_PORT_VALIDATION_PASSED
SMT_PORT_VALIDATION_FAILED
There is no health check, retry, or automatic restart. Do not rely on a specific operating-system exit code after shifted-port detection.
Check that the map is not null and that Map Name exactly matches its full package name. Use /Game/Maps/Lobby, not only Lobby.
Check Local Launch mode, the project executable, map package names, project -server support, and the Output Log. A preflight failure prevents partial launch and reports the unavailable port.
Resolve the unavailable port named by SMT_PORT_PREFLIGHT_FAILED, then retry PIE. The plugin does not promise an automatic port shift for the managed group.
Use SMT_PORT_VALIDATION_FAILED to compare expected and actual ports. The plugin requests clean server exit; the exact OS exit status is not a contract.
The plugin does not connect the client automatically. Pass GetServerAddress(Map) to the project’s own connection or travel flow.
For reproducible problems, open an issue in the ServerManageToolPlugin repository with sanitized logs, engine version, mode, list order, and the relevant markers.
7777 and assignment follows Server List order.-server.TargetType.Server executable is not provided or verified.Udon-Tobira Git identity and the current metyatech identity.metyatech.AddressAndExit verification.