Dedicated Server, Admin problem

mulis

New member
Hi guys :)

Code:
Started my first 7dtd server but cannot access the Admin/dm menu. Have entered my steam64 id in the config
 
I would suspect that you did it wrong or did not remove the parts that comment out the line.  Hard to say without more information though.  The config file has a pretty good example of how it needs to be.

 
ill post it 1 sec

<adminTools>
  <!-- Name in any entries is optional for display purposes only -->
  <users>
    <!-- <user platform="Steam" userid="76561198175452303" name="Hint on who this user is" permission_level="0" /> -->
    <!-- <group steamID="76561198175452303" name="Christofer89" permission_level_default="0" permission_level_mod="0" /> -->
  </users>
  <whitelist>
    <!-- ONLY PUT ITEMS IN WHITELIST IF YOU WANT WHITELIST ONLY ENABLED!!! -->
    <!-- If there are any items in the whitelist, the whitelist only mode is enabled -->
    <!-- Nobody can join that ISN'T in the whitelist or admins once whitelist only mode is enabled -->
    <!-- Name is optional for display purposes only -->
    <!-- <user platform="" userid="" name="" /> -->
    <!-- <group steamID="" name="" /> -->
  </whitelist>
  <blacklist>
    <!-- <blacklisted platform="" userid="" name="" unbandate="" reason="" /> -->
  </blacklist>
  <commands>
    <!permission cmd="kick" permission_level="0" /> -->
    <!<permission cmd="say" permission_level="0" /> -->
    <!permission cmd="chunkcache" permission_level="1000" />
    <!permission cmd="debugshot" permission_level="1000" />
    <!permission cmd="debugweather" permission_level="1000" />
    <!permission cmd="decomgr" permission_level="1000" />
    <!permission cmd="getgamepref" permission_level="1000" />
    <!permission cmd="getgamestat" permission_level="1000" />
    <!permission cmd="getlogpath" permission_level="1000" />
    <!permission cmd="getoptions" permission_level="0" />
    <!permission cmd="gettime" permission_level="1000" />
    <!permission cmd="gfx" permission_level="1000" />
    <permission cmd="graph" permission_level="1000" />
    <permission cmd="help" permission_level="1000" />
    <permission cmd="listplayerids" permission_level="1000" />
    <permission cmd="listthreads" permission_level="1000" />
    <permission cmd="loot" permission_level="1000" />
    <permission cmd="memcl" permission_level="1000" />
    <permission cmd="settempunit" permission_level="1000" />
  </commands>
  <apitokens>
    <!-- <token name="adminuser1" secret="supersecrettoken" permission_level="0" /> -->
  </apitokens>
  <webmodules />
  <webusers />
</adminTools>

 
Yeah, you did not remove the comments.  You have to read all of the instructions.

EVERYTHING BETWEEN <!- - and - -> IS COMMENTED OUT! THE ENTRIES BELOW ARE EXAMPLES THAT ARE NOT ACTIVE!!!

So basically you put your information in there, did so incorrectly, and also told the client not to use it. That second example line is for using Steam Groups to manage permissions.

Your Users section should look like this....

Code:
  <users>
    <!-- <user platform="Steam" userid="76561198175452303" name="Hint on who this user is" permission_level="0" /> -->
    <!-- <group steamID="103582791434672565" name="Steam Universe" permission_level_default="1000" permission_level_mod="0" /> -->
    <user platform="Steam" userid="76561198175452303" name="Christofer89" permission_level="0" />
  </users>
 
Code:
It did work first time i log on to the server.
When I try to log into the server for the 2nd time, I get this message.
Code:
WRN Group request failed: UserID: 76561198175452303
 
It did work first time i log on to the server.
When I try to log into the server for the 2nd time, I get this message.

Code:
WRN Group request failed: UserID: 76561198175452303

That means that you did not make the changes I showed you, but instead only commented out the line that you had configured incorrectly.  Again, you need to pay clear attention to the details of the documentation that is literally right there in the file.

 
Back
Top