Server Management – Arma Reforger

From Bohemia Interactive Community
Jump to navigation Jump to search
(Page creation)
 
(Add future commands)
Line 108: Line 108:
  #kick ThatAnnoyingPlayer
  #kick ThatAnnoyingPlayer
<!--
<!--
Kick (eject) the player out of the server through their playerId (obtained by {{Link|#players}}). Said player can still rejoin the server.
; Example
#kick 123456789
=== ban ===
=== ban ===


Ban (eject and banish) the provided from the server. Said player cannot rejoin.
Ban (eject and banish forever) the player out of the server through their playerId (obtained by {{Link|#players}}). Said player cannot rejoin.
; Example
; Example
  #ban ThatCheatingPlayer
  #ban 123456789
--><!--
 
=== listPlayers ===
=== players ===


Lists players on the session.
Lists session's players and their playerId.


; Example
; Example
  #listPlayers
  #players
-->
-->




{{GameCategory|armaR|Support}}
{{GameCategory|armaR|Support}}

Revision as of 17:17, 29 July 2022

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
As of Arma Reforger 0.9.5, neither player-hosting nor the #vote command are implemented, leaving only the Logged-in Server Admin option for now.


Permissions

Right Roles
Logged Admin Player
#login Unchecked Checked
#logout Checked Unchecked
#roles Checked Checked
#restart Checked Unchecked
#shutdown Checked Unchecked
#kick Checked Unchecked


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 provided player from the server. Said player can still rejoin the server.

Example
#kick ThatAnnoyingPlayer