Ulysses

Ulysses Stuff => General Chat & Help and Support => Topic started by: ace27 on February 20, 2010, 05:42:11 AM

Title: A list of admins/superadmins?
Post by: ace27 on February 20, 2010, 05:42:11 AM
Well, I never meant to, but I've ended up not being able to keep track of the numerous admins on my server, is there anyway to view a full list in the ulx or ulib files?
Title: Re: A list of admins/superadmins?
Post by: JamminR on February 20, 2010, 09:11:07 AM
You can manually view normal Gmod (ULib imports it) gmod/settings/users.txt, and ULib created gmod/data/ULib/users.txt
You may also use from server console "ulx debuginfo" which will dump a file into gmod/data/ulx that has both files shown plus all the addons you use and other information.
Title: Re: A list of admins/superadmins?
Post by: ace27 on February 20, 2010, 10:22:51 AM
Thank you, can admins be added/removed from this list (the users.txt one)?
Title: Re: A list of admins/superadmins?
Post by: JamminR on February 20, 2010, 11:31:30 AM
The ULib one?
Sure, as long as you know how to keep the syntax grouping.
Basically, both svn and release use the same table format
Code: [Select]
"1admin name(steamid if svn)"
{
"blah1"
}
"2admin name(steamid if svn)"
{
"blah2"
}
"3admin name(steamid if svn)"
{
"blah3"
}

You'd need to get rid of "name/steamid" and the full bracket tree { } until the next name/steamid.
"2admin name(steamid if svn)"
{
"blah2"
}

I recommend backing up before editing. Easy to erase a wrong character and break it.