TooManyItems Permission Nodes

Discussion in 'Bukkit Help' started by thomash131, Feb 9, 2013.

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

    thomash131

    This is my first time running a server, and I'll openly admit I'm a noob, so please go easy.

    I'm looking to give all users the ability to use the toomanyitems menu on my private creative server. Everyone has the bukkit.command.give node, and yet they still can't use it. Am I missing something here? Is it strictly for Opped users only?

    Thanks Guys,
    -Tom
     
  2. Offline

    Jug_Seb

    I think it's only for opped users.

    Maybe if you do permissions and ops can only do what users do and Admins do what ops do. Just an idea, may not work.

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

    thomash131

    I don't think it's possiible to edit the commands that op users get.
     
  4. Offline

    Necrodoom

    if you can do /give manually, you can use TMI.

    TMI checks for no permissions.
     
  5. Offline

    thomash131

    What's the permission node for that? I've added bukkit.command.give, but people still can't use the give command or TMI.
     
  6. Offline

    Necrodoom

    list plugins.
     
  7. Offline

    c0mp

    You may have another plugin overriding the built-in /give command (such as Essentials). If that's the case, you'll need to give the players that use TMI the ability to use that plugin's /give command (essentials.give or whatever). However, that will also allow those players to give items to any other player as well.
     
  8. Offline

    thomash131

    Plugins
    ChatManager
    ItemManager
    Jail
    PermissionsEx
    Worldedit
    Worldguard

    Anyone?

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

    Jeyge

    Post your permissions.yml file on pastebin.com and paste the link here.
     
  10. Offline

    computerman_

    Too many items is a like a shortcut to /give (player) (item)
    so it would be bukkit.command.give
    for more permissions nodes for bukkit you can find here
     
  11. Offline

    GUNSMAN58

    Hey so what you need to do is give the /give permission node, the /time set permission node, and the /toggledownfall permission node. That is to make every button on TMI work except for game mode change. I'm not sure about that one. Or you could simply just OP them if you trust them enough to use TooManyItems.
     
  12. Offline

    computerman_

    if you have essentials it essentials.give i think
     
  13. Offline

    c0mp

    Check to see if that plugin is overriding the built-in /give command.
     
  14. Offline

    thomash131

    I just removed this plugin completely since I don't use it, and it still isn't working.

    http://pastebin.com/MzEequs1

    I don't have essentials.

    Thanks for your help so far guys.
     
  15. Offline

    Jeyge

    I just gave your permissions file a try on my test server and it looks like anyone outside of the "default" group can't use the give command. This is caused by your inheritance being set up wrong. It needs to look like this:
    Code:
            inheritance:
            - default
    
    Change the 2 locations to look like that and you should be set.
     
    thomash131 likes this.
  16. Offline

    computerman_

    bukkit.command.give should work
     
  17. Offline

    thomash131

    Awesome, that fixed it! Thanks!
     
    Jeyge likes this.
  18. Offline

    Derpzord

    Just found a fix for this as well, In your server folder navigate Config>NEIserver.cfg

    Edit the following parts:
    Code:
        creative=OP
        delete=OP
        enchant=OP
        heal=OP
       item=OP
        magnet=OP
        notify-item=CONSOLE, OP
        rain=OP
        save-state=OP
        time=OP
    To look like this:
    Code:
        creative=ALL
        delete=OP
        enchant=OP
        heal=OP
        item=ALL
        magnet=OP
        notify-item=CONSOLE, OP
        rain=OP
        save-state=OP
        time=OP
     
Thread Status:
Not open for further replies.

Share This Page