Ulysses

Ulysses Stuff => General Chat & Help and Support => Topic started by: smiffyvs on March 15, 2014, 04:37:43 AM

Title: Cant Remove commands from any group
Post by: smiffyvs on March 15, 2014, 04:37:43 AM
I have got Ulx and i am trying to remove commands from a group. I am typing in console ulx groupdeny Moderator ulx bring     it says for every command i do that this group doesnt have access to that command. the groups i make inherit from Admin.

PLEASE HELP ME
Title: Re: Cant Remove commands from any group
Post by: Decicus on March 15, 2014, 05:52:19 AM
If the group inherits from admin, then you have to make sure that the admin group doesn't have access to the commands as well.
This is a good read too: http://forums.ulyssesmod.net/index.php/topic,3073.0.html (http://forums.ulyssesmod.net/index.php/topic,3073.0.html)
Title: Re: Cant Remove commands from any group
Post by: JamminR on March 15, 2014, 05:57:58 AM
Lua is case sensitive.
Always make groups lower case.
Title: Re: Cant Remove commands from any group
Post by: Cobalt on March 15, 2014, 09:22:15 AM
Lua is case sensitive.
Always make groups lower case.
You guys should make it so that you can't have uppercase letters in a group name.
Code: [Select]
local name = string.sub( whatevertextbox:GetText(), 1, 1 )
local nameUpper = string.sub( string.upper( name ), 1, 1 )
if name == nameUpper then
--whatever
end
Title: Re: Cant Remove commands from any group
Post by: smiffyvs on March 15, 2014, 02:55:54 PM
Thanks guys this really help.