Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions game-servers/arma-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ startparameters="-client -connect=${ip}:${port} -password=CHANGEME"
Edit the game server config of `arma3server` (not the headless client) `arma3server.server.cfg` and add the headless client IP address to `headlessClients[]=`. If the headless client is on the same physical server as the ARMA 3 server then also add the IP to `localClient[]=`.

{% hint style="warning" %}
Do not use 127.0.0.1 as the IP address.
127.0.0.1 is the acceptable IP address when HC is started on the same machine as the main server.
{% endhint %}

```
headlessClients[]={"1.2.3.4"};
localClient[]={"1.2.3.4"};
headlessClients[]={"127.0.0.1"};
localClient[]={"127.0.0.1"};
```

Navigate to your profile directory.
Expand Down