GroupManager ranks and permissions

Discussion in 'Plugin Development' started by poopgoblin, Jul 22, 2012.

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

    poopgoblin

    Hello Bukkit community. I'm over a hundred hours into building my server and I'm near the threshold. I know just about everything I'm doing other then writing these scripts. Could anyone write some scripts so there's four ranks.

    rank one:spectator
    has the ability to fly with something like /noclip on
    optional hide player
    no ability to build
    can warp and see motd

    rank two:Guest
    Can build
    see motd
    warp, warp list
    No use of lava, fire, tnt, water
    can kill
    afk
    talk and message players
    /balance for chest shop

    rank three:Builder
    full game content
    with all of guest permissions
    (important: also use chest shop and ADMIN SHOP)

    rank four:Owner
    "*" admin of course

    I'd really appreciate some help. I'm about ready to rig a rube goldberg machine with my ar15.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 27, 2016
  2. Offline

    artish1

    If your asking for some1 to do this for you... your in the wrong section, This is Plugin Development, where plugin developers ask for questions they don't know about. and they're questions get answered. This is about asking to make a plugin or permissions (Looks more like permissions). Please post somewhere else
     
  3. Offline

    CorrieKay

    Wrong forum.

    But if its for group manager, use this as a copypaste.

    Code:
      <group name>:
        default: true
        permissions:
        - permission.one 
        - permission.two
        inheritance: []##add groups here that you want to inherit their perms from. for instance, if you wanted to inherit "group1",youd put [group1]. for both group1 and group2, [group1, group2]
        info:
          prefix: ''
          build: true ##can they build? boolean (true/false) value
          suffix: ''
     
  4. Offline

    poopgoblin

    It was something so simple I would have over looked it a million times. I was using notepad++ and whenever I would space to the next line to add commands it would tab instead of spacing.
     
  5. Offline

    MrDent009

    poopgoblin

    Code:
    Spectator:
    permissions:
    - essentials.fly
    - essentials.warp
    - essentials.motd
    ##Must have plugin to hide player.
    build: false
    prefix: '&a[Spectator]'
     
    Guest:
    build: true
    permissions:
    - essentials.motd
    - essentials.warp
    - essentials.afk
    - iConomy.holdings
    prefix: '&2[Guest]'
    ##You need a plugin to disable the use of LAVA,TNT,FIRE,WATER.
    ##All players are able to kill.
    ##All players are able to speak.
     
    Builder:
    permissions:
    - essentials.motd
    - essentials.warp
    - essentials.afk
    - iConomy.holdings
    build: true
    inheritance: Guest
    prefix: '&b[Builder]'
     
    Admin:
    permissions:
    - '*'
     
    Owner:
    permissions:
    - '*'
     
    ##Written by MrDent009 :)[CODE/]
    
    There you go
     
    poopgoblin likes this.
  6. Offline

    poopgoblin

    I love this forum already. I've wrote almost all of it myself after finding out what my error was. Now I need a suggestion for a plugin that's compatible with group manager and preventing block use/placement. Also I'm guessing there's no command to allow the spectator to /noclip without admin on something like worldedit.

    While toggling through the ranks I found Spectator couldn't build/break until he broke grass. Then he had full building permissions and once switched back to builder he couldn't build. This only happened once when switching back but now spectator doesn't hold true to build: false.

    http://forums.technicpack.net/threads/better-plugin-for-blocking-items.15503/
    Really useful stuff to check out.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 27, 2016
Thread Status:
Not open for further replies.

Share This Page