Difference between revisions of "Unturned: RocketMod"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
(Created page with " == RCON == Remote Console connection is made with a simple telnet client. You can use the 'telnet' command on linux or software for Windows such as Putty or CRT. RCON must ...")
 
m (RCON)
Line 8: Line 8:
  
 
Example Rocket.config.xml
 
Example Rocket.config.xml
 +
 +
<nowiki><?xml version="1.0" encoding="utf-8"?></nowiki>
 +
<nowiki><RocketSettings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"></nowiki>
 +
<nowiki>  <RCON Enabled="true" Port="25444" Password="l9FccX92q" EnableMaxGlobalConnections="true" MaxGlobalConnections="1" EnableMaxLocalConnections="true" MaxLocalConnections="1" /></nowiki>
 +
<nowiki>  <AutomaticShutdown Enabled="false" Interval="86400" /></nowiki>
 +
<nowiki>  <WebConfigurations Enabled="false" Url="" /></nowiki>
 +
<nowiki>  <WebPermissions Enabled="false" Url="" Interval="180" /></nowiki>
 +
<nowiki>  <LanguageCode>en</LanguageCode></nowiki>
 +
<nowiki>  <MaxFrames>60</MaxFrames></nowiki>
 +
<nowiki></RocketSettings></nowiki>

Revision as of 10:31, 8 December 2021

RCON

Remote Console connection is made with a simple telnet client. You can use the 'telnet' command on linux or software for Windows such as Putty or CRT. RCON must be enabled on your Unturned server. Navigate to the configuration file and set the service to 'true' then restart the server.

  1. Edit Rocket.config.xml ( Servers/server/Rocket/Rocket.config.xml )
  2. Change <RCON Enabled="false" Port="0" Password="" to <RCON Enabled="true" Port="25444" Password="yourpassword"
  3. Save and restart the server

Example Rocket.config.xml

<?xml version="1.0" encoding="utf-8"?>
<RocketSettings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <RCON Enabled="true" Port="25444" Password="l9FccX92q" EnableMaxGlobalConnections="true" MaxGlobalConnections="1" EnableMaxLocalConnections="true" MaxLocalConnections="1" />
  <AutomaticShutdown Enabled="false" Interval="86400" />
  <WebConfigurations Enabled="false" Url="" />
  <WebPermissions Enabled="false" Url="" Interval="180" />
  <LanguageCode>en</LanguageCode>
  <MaxFrames>60</MaxFrames>
</RocketSettings>