Use Arma Reforger admin commands when you need to manage players, check who is connected, or control bans without relying only on the in-game menu. Most day-to-day moderation is easiest in-game, while BattlEye RCON is useful when you want to run commands from outside the game.

Before You Start

In-Game Admin

The in-game admin tools are normally the safest way to kick or ban a player who is currently online, because the game already knows the correct player identity. Join the server as an admin, open the player/admin menu, select the player, then choose the action you need.

ActionWhat to use
Kick a playerUse the in-game admin player list and choose the kick action.
Ban a playerUse the in-game admin player list and choose the ban action, then enter a reason.
Find a player identifierUse the in-game admin player details if shown, or use RCON players.

BattlEye RCON Commands

Connect to BattlEye RCON with the RCON IP, port, and password configured for your server. Different RCON clients may show buttons for these actions, but the command names below are the common commands you will use for player moderation.

CommandWhat it does
playersLists connected players. Use this first so you can see the player number and GUID/identity shown by your RCON client.
kick PLAYER_NUMBER reasonKicks a connected player by their current player number.
ban PLAYER_NUMBER reasonBans a connected player by their current player number.
addBan PLAYER_GUID 0 reasonAdds a ban by player identifier. Use the GUID/identity copied from players, logs, or admin tools. 0 is commonly used by BattlEye tools for a permanent ban.
bansLists saved bans in the RCON client.
removeBan BAN_NUMBERRemoves a saved ban by the ban number shown by bans.
writeBansWrites the current ban list to disk.
loadBansReloads the ban list from disk, if supported by your RCON client/server version.

Examples

List connected players first:

players

Kick player number 3 for team killing:

kick 3 Team killing

Ban player number 3 while they are online:

ban 3 Cheating

Add a permanent ban using a copied player identifier:

addBan 0123456789abcdef0123456789abcdef 0 Cheating

Check bans and remove ban number 2:

bans
removeBan 2
writeBans

Notes

  • Player numbers can change when players disconnect or reconnect, so run players immediately before using a player-number command.
  • For offline players, use the player GUID/identity from logs, RCON output, or an existing ban entry.
  • For more detail on ban files and unbanning, see How to ban or unban players on your Arma Reforger server.
  • 0 brukere syntes dette svaret var til hjelp
Var dette svaret til hjelp?

Relaterte artikler

How to join an Arma Reforger server

You can join your Arma Reforger server by using the server address shown in your control panel....

How to update your Arma Reforger server

Use Steam Update when Arma Reforger releases a server update or when your client reports that the...

How to backup your Arma Reforger server

Create a backup before changing scenarios, editing server_config.json, adding mods, changing RCON...

How to restore a backup on your Arma Reforger server

Restore a backup when you need to roll back after a broken update, bad JSON edit, unwanted...

How to change your Arma Reforger server name and password

The Arma Reforger server name and password are stored in server_config.json. Use the Config...