Hello, Id like to ask, how would I configure ULX to work correctly with Uteam? I'm switching from Assmod to ULX so, Id pretty much like to have:
Owner
SuperAdmin
Admin
Respected
Player
I know I have to edit the Uteam.txt for the users, but can I directly promote people to Uteam groups? (promote me "Owner")
Currently this is my Uteam.txt in data folder:
"Out"
{
"teams"
{
"1"
{
"name" "Owner"
"group" "superadmin"
"armor" "1337"
"hp" "1337"
"color"
{
"a" "255"
"B" "85"
"g" "200"
"r" "0"
}
"plytable"
{
"1" "SprintSpeed:5000"
"2" "WalkSpeed:1000"
}
}
"2"
{
"name" "SuperAdmin"
"group" "admin"
"armor" "500"
"hp" "500"
"color"
{
"a" "255"
"B" "50"
"g" "50"
"r" "255"
}
}
"3"
{
"name" "Admin"
"group" "admin"
"armor" "100"
"hp" "500"
"color"
{
"a" "0"
"B" "50"
"g" "50"
"r" "255"
}
}
"4"
{
"name" "Operator"
"group" "operator"
"armor" "200"
"hp" "200"
"color"
{
"a" "255"
"B" "0"
"g" "200"
"r" "255"
}
}
"5"
{
"name" "Player"
"group" "user"
"color"
{
"a" "255"
"B" "255"
"g" "100"
"r" "0"
}
}
}
"gamemodes"
{
"1" "Sandbox"
"2" "SpaceBuild"
}
}
and my groups.txt: again in data folder
//ATTENTION! This is a default file. DO NOT EDIT THIS FILE!!!
//Instead, edit the version in <garrysmod root>/data/ULib/groups.txt if it exists. If it doesn't, copy this file over to create it.
//IF YOU MAKE CHANGES TO THIS FILE THEY WILL BE ERASED!
"Operator"
{
"allow"
{
}
}
"admin"
{
"allow"
{
}
"inherit_from" "Operator"
}
"superadmin"
{
"allow"
{
}
"inherit_from" "Admin"
}
"owner"
{
"allow"
{
}
"inherit_from" "Superadmin"
}
// This is your default user. Everyone is considered part of this group so handle with care!
"Player"
{
"allow"
{
}
}
In other words, how do I get ULX to like Uteam (along with UPS, restrict etc)