37 lines
1.4 KiB
INI
37 lines
1.4 KiB
INI
; Minimal SCUM Source RCON over UE4SS.
|
|
; Change password before starting the server.
|
|
|
|
[rcon]
|
|
bind_address = 127.0.0.1
|
|
port = 27015
|
|
password = CHANGE_ME_BEFORE_USE
|
|
auth_log = true
|
|
max_connections = 4
|
|
packet_body_bytes = 4000
|
|
command_timeout_ms = 10000
|
|
allow_empty_password = false
|
|
|
|
[dispatch]
|
|
; Primary path: create a server-only BP_ConZPlayerController + ConZCharacter,
|
|
; then invoke SCUM's AdminCommand executor. This does not require any player
|
|
; (including an administrator) to be connected.
|
|
offline_admin_dispatch = true
|
|
; The executor is discovered by one exact SCUM build signature. If SCUM updates
|
|
; and it no longer resolves uniquely, commands fail safely and rcon.dispatch
|
|
; reports the reason instead of calling an untrusted address.
|
|
native_admin_executor = true
|
|
; Fallback only for non-AdminCommand Unreal console commands.
|
|
context = auto
|
|
|
|
[admin]
|
|
; auto = <SCUM>/Saved/Config/WindowsServer/AdminUsers.ini
|
|
; This list is re-read when the file changes. It is never substituted with
|
|
; the first online player.
|
|
users_file = auto
|
|
; Optional selection only: this ID must also already exist in AdminUsers.ini.
|
|
; Leave empty to use the first configured admin ID deterministically. This is
|
|
; not an authorization entry and never substitutes an online player.
|
|
preferred_steam_id =
|
|
; Refuse game commands if AdminUsers.ini is missing or has no valid SteamID64.
|
|
require_configured_admin = true
|