Skip to main content

ECO: Become an Admin

🔑 Become Admin

Administrator rights allow you to make changes directly in the game on your server without having to change it in the Config. Adding an admin is done via the Users.eco Config, which you can find in the interface under Configs.

image

To add a new player as admin the following part in the Users.eco Config has to be adjusted:

  "Admins": {
"System.String": {
"$type": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib]], System.Private.CoreLib",
"$values": []
}
},

The player who is supposed to become admin is specified in the field values. In case of several admins, they are added comma separated. To identify the player the SteamID64 is used.

You can find it by accessing your Steam profile and then right-clicking anywhere on the profile. There you can copy the Steam URL of your profile..

image

Afterwards, the URL must be typed in one of the following websites:

image

This will provide you the general account information as well as the Steam ID. This one will then be inserted at values. The result of this looks like this:

  "Admins": {
"System.String": {
"$type": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib]], System.Private.CoreLib",
"$values": [
"123456789",
"anotherSteamID"
]
}
},

Once the server has been restarted, players registered there have been assigned administrator privileges. If you want to add more admins, then you don't have to do this always via the Config anymore. Instead you can do this in game by using the following command:

/admin [player]

In the following you will find an overview of common used admin commands that you can execute as an admin.

⌨️ Common used commands

CommandsDescription
/allblocksSpawns all blocks
/allconstructedSpawns all player constructable blocks
/allplantsSpawns all plant blocks
/allskillsUnlocks all skills
/allterrainSpawns all diggable blocks
/allworldobjectsSpawns all world objects
/kick [player],(reason)Kicks a user
/ban [player],(reason)Bans a user
/give [itemname],(amount)Give yourself an item
/giveskillpoints [player],(amount)Give skillpoints to another player
/flyToggles fly mode
/move [x],[y],[z]Moves you to position x, y, z; where xyz are integers.
/removeadmin [player]Removes a user as an Admin

More available commands can be found in the official ECO Wiki.