Solved GM Commands

Discussion in 'Bukkit Help' started by Ysharma, May 13, 2012.

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

    Ysharma

    I am using Essentials group manager to manage my essentials commands. How can I remove use of a command, e.g. /back, how do I allow certain groups to use certain commands. Also how do I setup permissions for commands from other plugins.
     
  2. Offline

    BeastlyGreg

    • adfly is not allowed
    your config should look like this,

    Code:
    groups:
      Default:
        default: true
        permissions:
        - essentials.help
        - essentials.help.*
        - -essentials.help.factions
        - essentials.helpop
        - essentials.list
        - essentials.motd
        - essentials.rules
        - essentials.spawn
        - essentials.eco
        inheritance: []
        info:
          prefix: '&e'
          build: false
          suffix: ''
      Builder:
        default: false
        permissions:
        - essentials.home
        - essentials.me
        - essentials.msg
        - essentials.sethome
        - essentials.warp
        inheritance:
        - default
        info:
          prefix: '&2'
          build: true
          suffix: ''
    Now you have to do this, add say - essentials.back to your builders permissions, make sure you use 4SPACES and not a TAB. That should solve your problems. For the essentials permissions page here is the link [removed]
     
  3. Offline

    Ysharma

    How would I add restrictions for commands from other plugins. Would I do something like -simplebackup.backup?
     
  4. Offline

    ZeroZX4

    if this permission will allow you to use /spawn

    - essentials.spawn

    than this will prevent you from using /spawn

    - -essentials.spawn

    so this - - works as negative permission
     
  5. Offline

    Ysharma

    How can i set permissions for commands from other plugins
     
  6. Offline

    ZeroZX4

    well first you need t go to plugin site for example world guard

    http://forums.bukkit.org/threads/se...oms-advanced-fast-area-protect-blacklist.790/

    and now im too lazy to scroll whole page in searching for permissions so what i always do

    1st hold CTRL and hit F that will trigger search window

    2nd in that search window you type permission and you just search it on that site but if you cant find try searching wiki cause some sites have it under wiki link

    and now all you need to go to that permissions or wiki site and find all permissions you desire and put them in your permissions file

    in worldguard it was wiki (after you click it ctrl + F and search permissions)
    http://forums.bukkit.org/threads/se...ooms-advanced-fast-area-protect-blacklist.790

    but in essentials it was permission
    http://forums.bukkit.org/threads/ge...tion-of-useful-commands-1-2-4-1-2-5-r1.15312/

    and this is some basic permission
    - essentials.kit.*
    - worldguard.ungod

    and all you need to remember is the amount of spaces when you adding new nodes

    so like
    < to left side of node need to be 4 spaces and each node need to be under other node or under permissions:

    and thats all
     
  7. Offline

    Ysharma

    Thank you very very much.
    How would I put someones group name next to their name, by that I'm talking about the chat?
     
  8. Offline

    ZeroZX4

    Builder:
    default: false
    permissions:
    - essentials.home
    - essentials.me
    - essentials.msg
    - essentials.sethome
    - essentials.warp
    inheritance:
    - default
    info:
    prefix: '&2'
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

    Builder:
    default: false
    permissions:
    - essentials.home
    - essentials.me
    - essentials.msg
    - essentials.sethome
    - essentials.warp
    inheritance:
    - default
    info:
    prefix: '&2Builder'
     
  9. Offline

    BrandonHopkins

Thread Status:
Not open for further replies.

Share This Page