Overview
OpenWorldServer (OWS) is a large framework of characters, abilities (GAS), attribute sets, inventory, chat and replication built for persistent open worlds, plus a web-API client layer. Classes keep the established OWS prefix.
Fork note Module
OWSPlugin was renamed to OpenWorldServer for UE 4.27–5.0+ (the OWS class prefix — the product acronym — was kept). Bundled content is migrated via CoreRedirects. A small utility library was added.Requirements
| Requirement | Details |
|---|---|
| Unreal Engine | 4.27–5.0+ |
| Engine plugins | GameplayAbilities, ReplicationGraph |
| Language | Blueprints and/or C++ |
| Platforms | Win64 · Mac · Linux |
Installation
- Copy the
OpenWorldServerfolder 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 OpenWorldServer is enabled.
Key classes
| Class | Kind | Description |
|---|---|---|
| AOWSCharacter / AOWSCharacterWithAbilities | Callable | Networked characters (with GAS variant). |
| UOWSAttributeSet / UOWSBasicAttributeSet | Callable | Gameplay attribute sets. |
| UOWSInventory / AOWSChatManager | Callable | Inventory and chat systems. |
| UOWSReplicationGraph | Callable | The framework's replication graph. |
Helpers (OWS Utility Library)
| Node | Type | Description |
|---|---|---|
| Build Api Url | Pure | Join an API base URL and endpoint. |
| Is Valid Guid String | Pure | Validate a GUID (OWS ids). |
| Is Valid Http Url | Pure | Validate an absolute http(s) URL. |
Utility node pack
General-purpose networking utilities added to UOWSUtilityLibrary — 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.0+.
