Overview
PyMasterServer registers an online subsystem named PyMasterServer that you can select like any platform (Steam, Null, EOS). It talks to a custom master-server over HTTP/sockets for sessions and identity.
Fork note A full rebrand of an
OnlineSubsystemPython-style platform: module/classes and the registered platform-service identifier were renamed to PyMasterServer for UE 4.27, 5.7 and 5.8. A Blueprint helper library was added.Requirements
| Requirement | Details |
|---|---|
| Unreal Engine | 4.27, 5.7 and 5.8 |
| Engine plugins | OnlineSubsystem, OnlineSubsystemUtils |
| Language | Blueprints and/or C++ |
| Platforms | Win64 · Mac · Linux |
Installation
- Copy the
PyMasterServerfolder into your project'sPlugins/directory. - C++ projects: regenerate project files and build. Blueprint-only projects can launch the editor directly.
- Open Edit → Plugins and confirm PyMasterServer is enabled.
Selecting the subsystem
In your project DefaultEngine.ini:
[OnlineSubsystem]
DefaultPlatformService=PyMasterServer
[OnlineSubsystemPyMasterServer]
bEnabled=trueSet the master-server address on the config object in DefaultGame.ini.
Helpers (PyMasterServer Library)
| Node | Type | Description |
|---|---|---|
| Get PyMasterServer Address | Pure | Configured master-server address. |
| Is PyMasterServer Active | Pure | True when it is the active default subsystem. |
| Is Valid Server Address | Pure | Validate a host:port address. |
Utility node pack
General-purpose networking utilities added to UPyMasterServerLibrary — available from Blueprints and C++.
| Node | Type | Description |
|---|---|---|
| CRC32 Of Bytes | Pure | CRC32 checksum of a byte array. |
| MD5 Of String / SHA1 Of String | Pure | Hex digests of a UTF-8 string. |
| Make Guid String | Pure | New random GUID (hyphenated). |
| Now Unix Seconds | Pure | Current UTC time as Unix seconds. |
| Unix Seconds To ISO8601 | Pure | Unix seconds → ISO-8601 UTC string. |
| Format Byte Size | Pure | Human-readable size, e.g. 1536 → 1.5 KB. |
| Random Token | Pure | Random alphanumeric token (ids, nonces). |
| XOR Bytes With Key | Pure | XOR bytes with a repeating key (obfuscation, not encryption). |
| Is Valid Hostname | Pure | RFC-952/1123-style hostname validation. |
Credits
© Alpha XP — alphaxp.net. Developed and maintained for UE 4.27, 5.7 and 5.8.
