To install MatchZy on a Tideo CS2 server:
- Access TideoCP: Log in to the server's TideoCP interface.
- Navigate to Mods Section: Go to the CS2 server panel and find the 'Mods' section.
- Install MatchZy: Select MatchZy from the list of available mods and initiate the installation.
After installation, you can proceed with the configuration steps previously mentioned, such as adding admins by editing the admins.json
file. For more detailed information, you can refer to the MatchZy GitHub page and its configuration documentation.
To add admins in MatchZy, a Counter Strike 2 plugin, you should follow these steps:
-
Locate the Admins File: Navigate to
/home/container/game/csgo/addons/counterstrikesharp/configs
. -
Edit the Admins File: Rename
admins_example.json
toadmins.json
. -
Get SteamID64: Use a service like steamid.io to find the SteamID64 of the user you wish to add. In the document, this is referred to as "identity".
-
Update the Admins File: In
admins.json
, add a new entry using the following format, replacingUSERNAME
with the admin's username andXXXXX
with their SteamID64.{ "NewAdmin": { "identity": "SteamID64", "flags": [ "@css/root" ] } }
{
"UsernameXXX": {
"identity": "SteamID64",
"flags": [
"@css/root"
]
},
"Another admin": {
"identity": "SteamID64",
"flags": [
"@css/config",
"@css/rcon"
]
}
}}-
Save the Changes: After editing, save the file.
- Restart the server
For a detailed guide, visit MatchZy's Configuration page.