Ulysses

Ulysses Stuff => General Chat & Help and Support => Topic started by: Desire on November 06, 2015, 06:02:39 PM

Title: trial moderator ban times
Post by: Desire on November 06, 2015, 06:02:39 PM
I'm trying to make it so that trial moderators can only ban for 1 hour, why isn't this working?

ulx groupallow trialmoderator "ulx voteban" "* 1:60m"
Title: Re: trial moderator ban times
Post by: Caustic Soda-Senpai on November 06, 2015, 08:18:54 PM
Because the command line doesn't make any sense..
Title: Re: trial moderator ban times
Post by: Desire on November 06, 2015, 08:23:23 PM
What should it be?
Title: Re: trial moderator ban times
Post by: Bytewave on November 06, 2015, 08:23:33 PM
You seem to have confused the syntax for immunity. See here (http://forums.ulyssesmod.net/index.php/topic,4314.msg16846.html#msg16846).
Code: [Select]
ulx groupallow trialmoderator "ulx voteban" "* 1~60"The tilde (~) operator is a range operator, which means they can only ban with durations ranging from 1 to 60 minutes.
Title: Re: trial moderator ban times
Post by: Desire on November 06, 2015, 08:33:15 PM
am I able to make it so that they can only ban people below their rank?
Title: Re: trial moderator ban times
Post by: Bytewave on November 06, 2015, 08:36:28 PM
am I able to make it so that they can only ban people below their rank?
Code: [Select]
ulx groupallow trialmoderator "ulx voteban" "!%trialmoderator 1~60"This is assuming your inheritance tree is linear, but that should work.