Ulysses

Ulysses Stuff => General Chat & Help and Support => Topic started by: Nightmare1944 on December 24, 2013, 07:33:30 PM

Title: Multiple Ranks?
Post by: Nightmare1944 on December 24, 2013, 07:33:30 PM
Is it possible for a user to have more than one rank? I am tiring to make a donating system and one of my admins donated, and wanted the benefits of the rank. Is there some way to do this? :-\
Title: Re: Multiple Ranks?
Post by: MrPresident on December 24, 2013, 08:44:34 PM
ULX does not support multiple user groups.
Title: Re: Multiple Ranks?
Post by: JamminR on December 25, 2013, 12:44:44 AM
As discussed (http://forums.ulyssesmod.net/index.php/topic,6528.msg31397.html#msg31397)
several (http://forums.ulyssesmod.net/index.php/topic,6382.msg30563.html#msg30563)
times (http://forums.ulyssesmod.net/index.php/topic,6719.0.html)
before (http://forums.ulyssesmod.net/index.php/topic,1172.msg5589.html#msg5589)

Some of the above posts provide various conversations on ways to work around the access issues using inheritance and userallow.
Some are also pre-gm13, but answer is still same.
Not directly.
Title: Re: Multiple Ranks?
Post by: sabo on December 25, 2013, 04:11:48 PM
These are my current Usergroups and due to no Flag system I might have to add more if I want to restrict something to another group lol:

Code: [Select]
Damagelog:AddUser("superadmin", 4)
Damagelog:AddUser("coder", 4)
Damagelog:AddUser("superadmine", 4)
Damagelog:AddUser("superadminp", 3)
Damagelog:AddUser("adminvip", 4)
Damagelog:AddUser("admin", 4)
Damagelog:AddUser("trialadminvip", 3)
Damagelog:AddUser("trialadmin", 3)
Damagelog:AddUser("adminp", 3)
Damagelog:AddUser("designervip", 3)
Damagelog:AddUser("designer", 3)
Damagelog:AddUser("moderatorvip", 3)
Damagelog:AddUser("moderator", 3)
Damagelog:AddUser("trialmoderatorvip", 2)
Damagelog:AddUser("trialmoderator", 2)
Damagelog:AddUser("vip", 2)
Damagelog:AddUser("member", 2)


I just made a new group which inherits from the group the player is in and added vip rights to it in the said addons :P