

This plugin adds RCON protocol support to your Valheim server.
BepInEx/config/org.tristan.rcon.cfg:
192.168.1.0/24, 10.0.0.1)The plugin supports CIDR notation for IP address filtering. Use CIDR masks to allow or block entire IP ranges:
192.168.1.1 (equivalent to 192.168.1.1/32)192.168.1.0/24 (allows IPs from 192.168.1.0 to 192.168.1.255)10.0.0.0/8 (allows IPs from 10.0.0.0 to 10.255.255.255)192.168.1.0/24, 10.0.0.1, 172.16.0.0/16 (comma-separated)Examples:
Whitelist IP mask = 192.168.1.0/24Blacklist IP mask = 203.0.113.0/24Whitelist IP mask = 192.168.1.0/24, 10.0.0.0/8View all available commands:
list
All commands - detailed description with examples.
-force flag in deleteObjects bypasses safety checks and can remove critical game objects (zone controllers, dungeons etc.). Use with extreme caution!If result of command execution is too long, it will be truncated in the RCON client, but the full result will be sent to Discord if you have configured a webhook URL in the plugin settings. For example if you execute findObjects command, it could return a lot of objects, and the RCON client will show only few of them. But the full result will be sent to Discord.
Gives player Ragnar level 4 Blackmetal Sword:
give Ragnar SwordBlackmetal -quality 4
Spawns 4 tamed level 3 Boars at coordinates x:90 y:31 z:90:
spawn Boar 90 31 90 -count 4 -level 3 -tamed
Sends a message Hello everyone! to the global chat:
say Hello everyone!
If you are a mod developer and want to add your own RCON commands for your server, please refer to the documentation.
You can also extend object information display by registering custom ZDO info providers via ZDOInfoUtil.RegisterInfoProvider().
If you have any questions / bug reports / suggestions for improvement or found incompatibility with another mod, feel free to contact me in discord typedeff or on GitHub