Articles on: ECO

ECO - Adding An Admin

Adding An Admin In Eco


Adding an admin to your Eco server is pretty simple! Just follow our instructions here:

Go to your TCAdmin panel and then click Config Files and then ind the file Users.eco
Edit this with the Text Editor and then within it you should see this:
{
    "UseWaste": false,
    "RequireAuthentication": true,
    "AllowDebugCalls": false,
    "WhiteList": {
        "System.String": {
            "$type": "System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib",
            "$values": []
        }
    },
    "BlackList": {
        "System.String": {
            "$type": "System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib",
            "$values": []
        }
    },
    "Admins": {
        "System.String": {
            "$type": "System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib",
            "$values": []
        }
    },


You're looking for the Admins section - Shown here:

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

You'll have to find your STEAMID64 and replace it in there. You can use a site such as this one here

```To add multiple admins do the following:
"Admins": {
    "System.String": {
        "$type": "System.Collections.Generic.List`1[[System.String, mscorlib]], mscorlib",
        "$values": [
            "STEAMID64",
            "STEAMID64",
            "STEAMID64"
        ]
    }
}

Updated on: 12/01/2021

Was this article helpful?

Share your feedback

Cancel

Thank you!