Author Topic: Access Help  (Read 3731 times)

0 Members and 1 Guest are viewing this topic.

Nick

  • Guest
Access Help
« on: February 09, 2008, 02:41:07 PM »
I have a dedicated server. I cant make myself superadmin. I looked at the FAQs and i just don't get the format of the users.txt document could someone give me a detailed example like where to find the things to put in there.
I cant get the debug info because i just bought the server.

Offline Chris

  • Newbie
  • *
  • Posts: 13
  • Karma: 2
Re: Access Help
« Reply #1 on: February 09, 2008, 03:10:39 PM »
Below is how the users.txt file works:

Code: [Select]
"Users"
{

"superadmin"
{
"YOUR NAME HERE" "STEAM ID HERE"
}

"admin"
{
}

}

So for example:

Code: [Select]
"Users"
{

"superadmin"
{
"Nick" "STEAM_0:1:8002048"
}

"admin"
{
}

}

Replace "STEAM_0:1:8002048" with your real steam ID, you can get your steam ID by starting a listen server with your client and typing "status" in the console.

Offline Megiddo

  • Ulysses Team Member
  • Hero Member
  • *****
  • Posts: 6214
  • Karma: 394
  • Project Lead
Re: Access Help
« Reply #2 on: February 09, 2008, 03:12:03 PM »
You say you read the FAQs and yet you do not follow the instructions.
Experiencing God's grace one day at a time.

Offline nckwrn0

  • Newbie
  • *
  • Posts: 10
  • Karma: 0
Re: Access Help
« Reply #3 on: February 09, 2008, 04:19:37 PM »
But what exactly goes in the "user" space and the "name" space is the name anything i want or my steamaccount, maybe my game name?

Offline Chris

  • Newbie
  • *
  • Posts: 13
  • Karma: 2
Re: Access Help
« Reply #4 on: February 09, 2008, 04:21:02 PM »
But what exactly goes in the "user" space and the "name" space is the name anything i want or my steamaccount, maybe my game name?

Anything can go there, that part doesn't matter a bit, what matters is your steam ID.

Offline nckwrn0

  • Newbie
  • *
  • Posts: 10
  • Karma: 0
Re: Access Help
« Reply #5 on: February 09, 2008, 06:34:31 PM »
so all it needs to look like is this
"anything"
{

   "superadmin"
   {
      "anything"         "mysteamid"
   }
   
   "admin"
   {
   }

}

Offline Chris

  • Newbie
  • *
  • Posts: 13
  • Karma: 2
Re: Access Help
« Reply #6 on: February 09, 2008, 06:37:11 PM »
so all it needs to look like is this
"anything"
{

   "superadmin"
   {
      "anything"         "mysteamid"
   }
   
   "admin"
   {
   }

}

The first "anything" needs to be "Users", other than that, correct.