EssentialsX `/help` Not Showing Vanilla/Bukkit Commands

Discussion in 'Bukkit Help' started by Doobliheim, Dec 18, 2017.

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

    Doobliheim

    I just set up `EssentialsX-2.0.1.jar` and 'EssentialsXChat-2.0.1.jar` on my server and I'm using `PermissionsEx` to manage permissions. Here's my permissions file:

    Code:
    groups:
      member:
        options:
          default: true
          prefix: '&2[Member]&f '
        permissions:
        - modifyworld.*
        - bukkit.command.help
        - bukkit.command.version
        - minecraft.command.help
        - minecraft.command.kill
        - minecraft.command.list
        - minecraft.command.me
        - minecraft.command.seed
        - minecraft.command.tell
        - minecraft.command.tellraw
        - minecraft.command.tp
        - essentials.build
        - essentials.chat.color
        - essentials.chat.magic
        - essentials.msg.color
        - essentials.msg.magic
        - essentials.signs.color
        - essentials.signs.magic
        - essentials.tp
        - essentials.tp.position
        - essentials.tp.others
        - essentials.afk.kickexempt
        - essentials.msg
        - essentials.help
        - essentials.me
    
      operator:
        options:
          prefix: '&2[Member]&f '
        permissions:
        - modifyworld.*
        - bukkit.command.help
        - bukkit.command.version
        - minecraft.command.help
        - minecraft.command.kill
        - minecraft.command.list
        - minecraft.command.me
        - minecraft.command.seed
        - minecraft.command.tell
        - minecraft.command.tellraw
        - minecraft.command.tp
        - essentials.build
        - essentials.chat.color
        - essentials.chat.magic
        - essentials.msg.color
        - essentials.msg.magic
        - essentials.signs.color
        - essentials.signs.magic
        - essentials.tp
        - essentials.tp.position
        - essentials.tp.others
        - essentials.weather
        - essentials.gamemode
        - essentials.ban
        - essentials.banip
        - essentials.tempban
        - essentials.unban
        - essentials.unbanip
        - essentials.help
        - essentials.afk.kickexempt
        - essentials.kick
        - essentials.kickall
        - essentials.suicide
        - essentials.exp.give
        - essentials.exp.set
        - essentials.time
        - essentials.list
        - essentials.me
        - essentials.msg
        - essentials.give
    schema-version: 1
    However, when the `/help` command is run, it only shows the the commands associated with EssentialsX that the player has permissions for. The players can't see any commands implemented by Vanilla/Bukkit (seed, version, tell, etc.). How do I get every command they have permissions for to show up under one help dialogue (preferably EssentialsX's)?
     
  2. Offline

    BooGaLoo90

    change non-ess-in-help to TRUE if false.
    inside of your essentials config:
    Code:
    ############################################################
    # +------------------------------------------------------+ #
    # |                   EssentialsHelp                     | #
    # +------------------------------------------------------+ #
    ############################################################
    
    # Show other plugins commands in help.
    non-ess-in-help: true
    
    # Hide plugins which do not give a permission.
    # You can override a true value here for a single plugin by adding a permission to a user/group.
    # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.
    # You can use negative permissions to remove access to just a single plugins help if the following is enabled.
    hide-permissionless-help: false
     
Thread Status:
Not open for further replies.

Share This Page