# Voice Over Network (VON) Settings on Your Arma Reforger Server (/docs/arma-reforger/von-settings)





import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
import { Step, Steps } from 'fumadocs-ui/components/steps';

Arma Reforger has built-in Voice Over Network (VON) for in-game voice chat. You can customize how VON behaves through the `gameProperties` section of your server config.

Configure VON [#configure-von]

<Tabs items={['Config Editor (Recommended)', 'Manual JSON']}>
  <Tab value="Config Editor (Recommended)">
    <Steps>
      <Step>
        Open the Config Editor [#open-the-config-editor]

        In the [XGamingServer Panel](https://panel.xgamingserver.com), click **Arma Reforger Config** in the sidebar.
      </Step>

      <Step>
        Go to the Properties tab [#go-to-the-properties-tab]

        Find the VON settings section.

                <img alt="Config Editor Properties tab" src={__img0} placeholder="blur" />
      </Step>

      <Step>
        Adjust the VON toggles [#adjust-the-von-toggles]
      </Step>

      <Step>
        Save and restart [#save-and-restart]

        Click **Save Changes** and restart from **Console**.
      </Step>
    </Steps>
  </Tab>

  <Tab value="Manual JSON">
    In `config.json`, add to `gameProperties`:

    ```json
    "gameProperties": {
      "VONDisableUI": false,
      "VONDisableDirectSpeechUI": false,
      "VONCanTransmitCrossFaction": false
    }
    ```
  </Tab>
</Tabs>

VON Settings Reference [#von-settings-reference]

| Setting                      | Default | Description                                                                                    |
| ---------------------------- | ------- | ---------------------------------------------------------------------------------------------- |
| `VONDisableUI`               | `false` | When `true`, hides the VON UI indicator showing who's transmitting. Voice chat still works     |
| `VONDisableDirectSpeechUI`   | `false` | When `true`, hides the proximity chat UI indicator (separate from radio VON)                   |
| `VONCanTransmitCrossFaction` | `false` | When `true`, players can transmit on enemy radios. When `false`, they can listen but not speak |

Common Configurations [#common-configurations]

Hardcore / Realism Server [#hardcore--realism-server]

Hide all VON UI for maximum immersion:

```json
"gameProperties": {
  "VONDisableUI": true,
  "VONDisableDirectSpeechUI": true,
  "VONCanTransmitCrossFaction": false
}
```

Casual / Fun Server [#casual--fun-server]

Defaults plus cross-faction radio for chaos:

```json
"gameProperties": {
  "VONDisableUI": false,
  "VONDisableDirectSpeechUI": false,
  "VONCanTransmitCrossFaction": true
}
```

Related Guides [#related-guides]

* [Server Configuration](/docs/arma-reforger/server-config)
* [Disable Third-Person](/docs/arma-reforger/disable-third-person)
