Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update arma-3.md #115

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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