Ulysses
Ulysses Stuff => General Chat & Help and Support => Topic started by: gbuddy on June 23, 2010, 05:34:09 PM
-
Hello,
I just got my dedicated server up and running and everything is working great! :D There one problem though, When I assign me and my co owner to superadmin it works but when i press tab to see if it actually makes us visible as superadmin it says unassigned. All commands as superadmin work and it all works fine butmy co owner wants People to see that we are the superadmins (i have made a new group called "Server Owner" with superadmin privilages but it still does the same thing with unassigned) If there is anything u can do to help can u explain in step by step?
Thanks, Gbuddy 8)
-
If you want to be put into a team based off your group, you want to download UTeam. (Note: groups and teams are completely different things)
-
I'm Pretty sure i have that and I also have utime and the scoreboard thing sorry i didnt post that earlier when i edit my uteam file it still will say unassigned :'(
-
Post your config here and we'll help you solve your problem.
-
groups.cfg?
-
"operator"
{
"allow"
{
}
"deny"
{
}
"inherit_from"
{
}
}
"admin"
{
"allow"
{
}
"deny"
{
}
"inherit_from"
{
"operator"
}
}
"superadmin"
{
"allow"
{
}
"deny"
{
}
"inherit_from"
{
"admin"
}
}
// This is your default user. Everyone is considered part of this group so handle with care!
"user"
{
"allow"
{
}
"deny"
{
}
"inherit_from"
{
}
}
"Builder"
{
"allow"
{
}
"deny"
{
}
"inherit_from"
{
}
}
-
No, your gmod/data/UTeam.txt
Put it in "code" tag or attach the file
-
Well i cant find that file that might be my problem where can i get it?
-
i must have disappeared when i reinstalled ulx
-
Follow the readme.txt instructions included with the UTeam zip file, or read the instructions/tips from the UTeam release forum.
http://forums.ulyssesmod.net/index.php/topic,663.0.html
Removing ULX wouldn't have touched UTeam
-
Thank you so much! everything is working now...oops well now when i add myself to my Server Owner group and rejoin server it just calls me player?
-
Then you must not have edited UTeam.txt correctly.
-
I fixed that but now I want a new group called "Head Admin" and when i create it doesnt give any admin privilages... hereis my code if you can tell me what to add
"Out"
{
"teams"
{
"1"
{
"name" "Server Owner"
"group" "superadmin"
"armor" "1000"
"hp" "1000"
"color"
{
"a" "255"
"B" "85"
"g" "200"
"r" "0"
}
"plytable"
{
"1" "SprintSpeed:1000"
"2" "WalkSpeed:500"
}
}
"2"
{
"name" "Head Admin"
"group" "admin"
"armor" "500"
"hp" "500"
"color"
{
"a" "255"
"B" "50"
"g" "50"
"r" "255"
}
}
"3"
{
"name" "Admin"
"group" "operator"
"armor" "200"
"hp" "200"
"color"
{
"a" "255"
"B" "0"
"g" "200"
"r" "255"
}
}
"4"
{
"name" "Players"
"group" "user"
"color"
{
"a" "255"
"B" "255"
"g" "100"
"r" "0"
}
"model" "male1"
}
}
"gamemodes"
{
"1" "Sandbox"
"2" "SpaceBuild"
}
}
-
Attempt at Source/Gmod tips 101 - Some you may already know, some you seem to think you know, some you do not.
Teams and access groups are two totally different things in Source.
ULib is a program library.
ULX uses ULib to control server commands (kick/ban/slay, etc) through group access. Group names typically are "superadmin", "admin" and "user"
UTeam uses ULib to tie team names in to group names.
You can use ULX to create custom groups. (addgroup)
You then use ULX commands (groupallow) to grant those custom groups the access you want.
Once you have all your groups set up, you can then edit UTeam.txt to the top to bottom level groups with any name team you want. Groups in UTeam must match ULX however.
I recommend you read the UTeam forum thread, many questions answered there.
See also our FAQs section regarding user list, allows and denies.
Some of the FAQs are slightly out dated if you are using SVN, but should still give plenty of example.
For someone to have "Head admin" team name according to your UTeam.txt example posted, you'd have to use ulx adduser to add them to the admin group.
-
Thank You! ;D