- Login to your control panel.
- Click into the configuration editor, then click text editor on the serveradmin.xml file
- In the file you will see something that looks similar to the following:
<admins>
<!-- <admin steamID="" permission_level="0" /> -->
</admins>
4. To add admins to your server, first you need to get their steamid64 number.
The steamID 64 numbers can be found for each user you want to make admin on the https://steamid.io website.
Next for each admin you need to duplicate the <admin… /> line, for example:
<admins>
<!-- <admin steamID="" permission_level="0" /> -->
<!-- <admin steamID="" permission_level="0" /> -->
<!-- <admin steamID="" permission_level="0" /> -->
</admins>
5. Finally, inside the steamID="" place the admins steamid64 you obtained earlier.
6. To enable the admins, you need to remove the <!—and --> parts of the lines, this uncomments them.
For example, the file should now look simular to below (with different ids):
<admins>
<admin steamID="76561198047812056" permission_level="0" />
<admin steamID="76534573473457556" permission_level="0" />
<admin steamID="75345634643654356" permission_level="0" />
</admins>