Difference between revisions of "Talk:Unturned: Server"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
(Created page with "== Unturned Website Web Site Link Lobby URL == On the game's lobby screen, servers can specify links to any related websites which are relevant to the community. To do this, ...")
 
(command examples: new section)
Line 12: Line 12:
  
 
In the above example, the first message will read as Our Website which will lead to http://robotz.com when clicked. The second message will read as Discord Server with a specified color, and lead to http://robotz.com/discord when clicked.
 
In the above example, the first message will read as Our Website which will lead to http://robotz.com when clicked. The second message will read as Discord Server with a specified color, and lead to http://robotz.com/discord when clicked.
 +
 +
== command examples ==
 +
 +
* how to set a warp
 +
/setwarp <warp name>
 +
edit the Servers/unturned/Rocket/Permissions.config.xml file and add the following:
 +
  <Permission Cooldown="1800">essentials.command.warp</Permission>
 +
  <Permission Cooldown="1">essentials.command.warps</Permission>
 +
  <Permission Cooldown="1">essentials.warp.warpname</Permission>
 +
place those in the desired group.

Revision as of 13:05, 25 January 2022

Unturned Website Web Site Link Lobby URL

On the game's lobby screen, servers can specify links to any related websites which are relevant to the community. To do this, you must make the appropriate changes in the Config.json file and restart the server.

The "Links" field, located around line 10, is an array, so you can have multiple entries, where each one has a rich text "Message" and "Url" field. For example:

"Links":
[
{ "Message": "Our Website", "Url": "https://examplesite.com/" },
{ "Message": "<color=#2979ff>Discord Server</color>", "Url": "https://robotz.com/discord" }
]

In the above example, the first message will read as Our Website which will lead to http://robotz.com when clicked. The second message will read as Discord Server with a specified color, and lead to http://robotz.com/discord when clicked.

command examples

  • how to set a warp
/setwarp <warp name>

edit the Servers/unturned/Rocket/Permissions.config.xml file and add the following:

 <Permission Cooldown="1800">essentials.command.warp</Permission>
 <Permission Cooldown="1">essentials.command.warps</Permission>
 <Permission Cooldown="1">essentials.warp.warpname</Permission>

place those in the desired group.