Noob question: Setting groups with bPermissions

Discussion in 'Bukkit Help' started by Typical_Name, Jun 12, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    Typical_Name

    I'm considering implementing a greylist for my server. I want moderators to be able to greylist people.

    To do this, I would need to give them access to the necessary commands, /world world, /user <name>, /user setgroup accepted. However, I can't figure out how to allow them to use the /user setgroup command without also giving them the ability to set players to groups aside from the ones used in the greylist (ie, the "admin" group).

    In essence, I want my moderators to be able to use /user setgroup accepted, but not /user setgroup admin.

    Does anyone know how I would do this?
     
  2. Offline

    ImminentFate

    I don't think you can, without trying some sort of alias plugin to go with it. You might be able to get it working by using something like commandhelper or something that aliases commands. If they have the right permissions support that is.
    codename_B If this is possible, please input. If not, it sounds like a great idea :)
     
  3. Offline

    codename_B

    There's a promotion track system in bPermissions that lets you rank people up.

    You should create a track called "accepted"

    tracks.yml

    Code:
    accepted:
    - default
    - accepted
    
    The permission node will be tracks.accepted

    The command will be /promote username accepted
     
    ImminentFate likes this.
  4. Offline

    ImminentFate

    codename_B likes this.
  5. Offline

    Typical_Name

    Ah, thanks. Seems simple enough.
     
Thread Status:
Not open for further replies.

Share This Page