You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds cross server chat support to ARK Survival Evolved servers using ARK Beyond API. Currently only supports multiple servers on the same machine due to using the Windows PulseEvent Synchronization API (https://msdn.microsoft.com/en-us/library/windows/desktop/ms684914(v=vs.85).aspx).
5
+
Adds cross server chat support to ARK Survival Evolved servers using ARK Server API.
6
+
7
+
Currently only supports multiple servers on the same machine due to using the Windows PulseEvent Synchronization API (https://msdn.microsoft.com/en-us/library/windows/desktop/ms684914(v=vs.85).aspx).
8
+
9
+
10
+
## Installation
11
+
12
+
1. Install ARK Server API (http://arkserverapi.com).
13
+
2. Download and extract ImprovedCommands into `ShooterGame\Binaries\Win64\ArkApi\Plugins`.
14
+
3. Optionally configure the plugin in `config.json`.
15
+
6
16
7
17
## Configuration
8
18
@@ -12,22 +22,35 @@ If not; each server should have a unique server key and the cluster key should b
12
22
13
23
`DatabasePath` must be a valid path and the directory must exist. The plugin will not attempt to create the directory.
14
24
25
+
`NamePattern` controls the formatting of character names.
26
+
27
+
*`{Name} [{ServerTag}]`: Use server tag as a suffix.
28
+
*`[{ServerTag}] {Name}`: Use server tag as a prefix.
29
+
*`{Name}`: Don't show server tags.
30
+
31
+
`HideServerTagOnLocal` may be set to `false` if you want server tags to be shown for chat messages coming from the local server (i.e. the one you are playing on).
0 commit comments