Server Management – Arma Reforger

From Bohemia Interactive Community
Revision as of 16:12, 22 March 2023 by Lou Montana (talk | contribs) (Update to 0.9.7)
Jump to navigation Jump to search
See also: Server Hosting.


Administrator Roles

An in-game server administrator can be:

  • the player hosting the server
  • a logged-in admin, using #login adminPassword
  • a voted-in admin through the #vote admin command


Permissions

Right Roles
Logged Admin Voted Admin Player
#login Unchecked Unchecked Checked
#logout Checked Checked Unchecked
#roles Checked Checked Checked
#restart Checked Unchecked Unchecked
#shutdown Checked Unchecked Unchecked
#kick Checked Checked Unchecked
#ban Checked Checked Unchecked
#unban Checked Checked Unchecked
#bans Checked Checked Unchecked
#id Checked Checked Checked
#players Checked Checked Checked


Commands

login

Login as server administrator with the password set in server config's field adminPassword.

Example
#login myServersPassword

logout

Example
#logout

roles

Print the list of server roles the player possesses.

Example
#roles

restart

Restart the actually running scenario. The server keeps the clients connected.

Example
#restart

shutdown

Shut down the server, disconnecting all the clients.

Example
#shutdown

kick

Kick (eject) the player out of the server through their playerId (obtained by players). Said player can still rejoin the server.

Example
#kick 123456789

ban

Ban (eject and banish forever or for a certain duration in seconds) the player out of the server through their playerId (obtained by players). Said player cannot rejoin until ban expiration.

Example

Ban for an hour

#ban 123456789 3600

Ban forever

#ban 123456789 -1

unban

Unban (cancel the ban) the player, allowing them to rejoin.

Example
#unban 123456789

bans

List bans in a format BanID ; Player UID ; Duration

Example
#bans

id

Gives the local player's id.

Example
#id

players

Lists session's players and their playerId.

Example
#players