Conan Exiles Wiki
Register
Advertisement

Remote Control (RCON) for Conan Exiles

Required/Suggested tools

Conan Exiles uses the same network protocol as minecraft for its remote control functionality, so you should be able to use any minecraft-compatible rcon tool to manage your server.
The one we currently suggest is the mcrcon tool by Tiiffi. (But we are likely going to release our own version at some point.
https://sourceforge.net/projects/mcrcon/

Configuring your server

You have two options to configure your server to use rcon, and you can mix&match the different options between the two if you want to.

Game.ini method

Add the following section (with your modifications) to your servers Game.ini file.

[RconPlugin]
RconEnabled=1				; 1 to turn on, 0 to turn off, or just don't add any of this to the file
RconPassword=YourRconPassword		; Write a password that only you and your enemies know, otherwise it won't work. (Disclaimer: These comments are not to be completely trusted, use common sense)
RconPort=25575				; Default port is 25575, you can skip adding it if that's fine with you. In all cases, if you use the default value, it will automatically be removed when the server shuts down.
RconMaxKarma=60				; Default max karma is 60. This is a protection against brute force attacks or spam. You can skip adding this one

Your dedicated server's Game.ini file's location is dependent on how you host it. If you are using a hosting company you can ask them for assistance, or they might already support RCON through their control panel.
If you are hosting your own, a typical location for the Game.ini could be:

C:\Program Files (x86)\Steam\SteamApps\common\Conan Exiles Dedicated Server\ConanSandbox\Saved\Config\WindowsServer\Game.ini

Commandline method

You can also configure rcon through commandline options.
Basically all the options under the Game.ini section also function as commandline arguments, with the same type of formatting as in the Game.ini

ConanSandboxServer.exe -RconEnabled=1 -RconPassword=YourRconPassword -RconPort=25575

Using Rcon

Assuming that you're using the mcrcon tool, you can connect to your server with the following command in a terminal window:

mcrcon.exe -c -t -H 123.123.123.123 -P 25575 -p YourRconPassword

Once connected, the first command you should try is "help":
Conan exiles rcon help
All rcon commands used on your server will be logged to a log file in your servers Logs folder. The file will be named RconCommandLog.log
All connections will be logged in the regular ConanSandbox.log file.

Commands

(Pending)

Modding Rcon

Will fill this in later, but modders can add their own rcon commands in the ModDevkit.

Advertisement