Ulysses
Ulysses Stuff => General Chat & Help and Support => Topic started by: Duke Nukem on April 04, 2013, 06:24:19 PM
-
So this is my first post, but I could really use some help with this.
I accidently deleted the superadmin group, thinking it wouldn't delete my newly created owner group, and the owner group doesn't have access to the Group tab, admin settings in Settings tab, or the Bans tab, so I'm asking, how do I fix this?
-
Quickest way would be to shut server down, delete your server gmod/data/ulib/groups.txt , then restart server and let ULX(Ulib actually through ULX) rebuild your default groups file.
Then if needed, rebuild any other custom groups.
All. Gmod has no idea what 'owner' is. It's a group made up by some mods/admin systems.
Gmod, by default, only knows 'superadmin', 'admin' and (though not officially titled), 'user'.
Don't go deleting any of the default groups, as code within Gmod (even WITHOUT any other mod) looks for those three groups to exist.
-
Thanks, man! You wouldn't happen to know how to change the scoreboard name of certain ranks, do you?
-
This didn't help, and it ended up just removing my ranks with no powers. Is there a specific command or something I can do?
It's not creating the group file, now. Well crap.
-
When you restarted your server (not a map change, but actual shutdown, start up), it didn't recreate gmod/data/ulib/groups.txt?
I've read bug reports from Megiddo that mention odd file issues.
You 'might' try copying gmod/addons/ulib/data/ulib/groups.txt to gmod/data/ulib ... then start server back up.
You'll most likely have to rebuild any custom groups.
I've no idea how 'ranks' tie into groups.
-
When you restarted your server (not a map change, but actual shutdown, start up), it didn't recreate gmod/data/ulib/groups.txt?
I've read bug reports from Megiddo that mention odd file issues.
It didn't, I tried 4 times.
You 'might' try copying gmod/addons/ulib/data/ulib/groups.txt to gmod/data/ulib ... then start server back up.
You'll most likely have to rebuild any custom groups.
I've no idea how 'ranks' tie into groups.
I'll try that, and alright.
-
It worked, thanks!
-
Don't forget about our newly introduced command, "ulx resettodefaults", JamminR! :)
Example:
> ulx resettodefaults
Are you SURE about this? It will remove ulx-created temporary bans, configs, groups, EVERYTHING!
If you're sure, type "ulx resettodefaults FORCE"
> ulx resettodefaults FORCE
Please change levels to finish the reset
(Console) reset all ULX and ULib configuration
-
Don't forget about our newly introduced command, "ulx resettodefaults", JamminR! :)
Example:
> ulx resettodefaults
Are you SURE about this? It will remove ulx-created temporary bans, configs, groups, EVERYTHING!
If you're sure, type "ulx resettodefaults FORCE"
> ulx resettodefaults FORCE
Please change levels to finish the reset
(Console) reset all ULX and ULib configuration
Oh cool!
By the way, you wouldn't know how to change the color of certain groups, would you? Like if I wanted to change the color of the name of someone in the superadmin group to yellow?
-
what gamemode are you trying to change the colours for?
-
what gamemode are you trying to change the colours for?
TTT
-
Don't forget about our newly introduced command, "ulx resettodefaults", JamminR! :)
Example:
> ulx resettodefaults
Are you SURE about this? It will remove ulx-created temporary bans, configs, groups, EVERYTHING!
If you're sure, type "ulx resettodefaults FORCE"
> ulx resettodefaults FORCE
Please change levels to finish the reset
(Console) reset all ULX and ULib configuration
Nice, but, until we add additional parameters to allow for selective resetting (groups, users, configs, adverts, motd, ...), resetting everything might actually have taken him longer.
As long as he recreates the exact same groups he originally had, all his users will (should anyway) be able to get the exact same access back since we didn't have him delete his users.txt :)
-
TTT
Place this in lua/autorun/server
if SERVER then
AddCSLuaFile("scoreboardcolors.lua")
else
function MySBColors(ply)
if ply:IsUserGroup("superadmin") then
return Color(255, 0, 255, 255) --pink
end
if ply:IsUserGroup("admin") then
return Color(31, 222, 0, 255)--green
end
end
hook.Add("TTTScoreboardColorForPlayer", "MySBColors", MySBColors)
end
basicly its a matter choosing the colour and the group
-
Place this in lua/autorun/server
if SERVER then
AddCSLuaFile("scoreboardcolors.lua")
else
function MySBColors(ply)
if ply:IsUserGroup("superadmin") then
return Color(255, 0, 255, 255) --pink
end
if ply:IsUserGroup("admin") then
return Color(31, 222, 0, 255)--green
end
end
hook.Add("TTTScoreboardColorForPlayer", "MySBColors", MySBColors)
end
basicly its a matter choosing the colour and the group
Sweet, thanks!
-
You 'might' try copying gmod/addons/ulib/data/ulib/groups.txt to gmod/data/ulib ... then start server back up.
You'll most likely have to rebuild any custom groups.
I did this, and also had the same problem by not having any commands, ranks, or maps to choose from. My name is orange in the tab menu as if having superadmin, but have no commands. Could you please help me?