How do i make TooManyItems work on my server?

Discussion in 'Bukkit Help' started by isleepzzz, Jun 4, 2012.

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

    isleepzzz

    Hello, i believe it is my AntiCheat or AnitHack thing that is blocking it but i was wondering
    since i am the owner of my server with OP and permissions for everything can i possibly make TooManyItems work for me and me only? Because every item i try to get out of TooManyItems, it says:

    "Error:Specified enchantment cannot be applied to this itemstack"

    How do i mkae it able for me to work only?:/

    BumP. Plz help me:c

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

    Magi1053

    Same problem no idea whats going on
    ~Bump~
     
  3. Offline

    isleepzzz

    Mann. i wish someone knew. Anyone knows? And how i can make it work for OP only?
     
  4. Offline

    andrewpo

    You can only use TooManyItems if your player has permission to use the /give command.

    Assuming you use windows: Go to your %AppData% folder from start->run (or windows key+R), go to your .minecraft folder, edit the toomanyitems.txt file and change allow multiplayer to true.

    Check the toomanyitems topic on the minecraft forums for more specific information.
     
  5. Offline

    ImminentFate

    Also in the toomanyitems file, you have to specify the command syntax that a /give plugin on your server uses, or it won't work
     
  6. Offline

    andrewpo

    It comes pre setup with the /give command, which doesn't support data values.

    You only need to change that configuration option if you want to spawn items like coloured wool/different wood/logs. The information for this can be found on the official toomanyitems topic on the Minecraft forums.
     
  7. Offline

    isleepzzz

    Dangit:'c

    In my TooManyItems.txt i only have:
    Code:
    enable:true
    enablemp:true
    itemsonly:false
    give-command:/give {0} {1} {2} {3}
    key:o
    save-name1:1
    save-name2:2
    save-name3:3
    save-name4:4
    save-name5:5
    save-name6:6
    save-name7:7
    save1:
    save2:
    save3:
    save4:
    save5:
    save6:
    save7:
    spawner:Pig
    include:
    exclude:
    
    I have no multiplayer option :'C
     
  8. Offline

    Nathan C

    Press the E key!

    [​IMG]
     
  9. Offline

    Sayshal

     
  10. Offline

    MisterTwo

    try making the give line in TooManyItems.txt look like this:

    give-command:/give {0} {1} {2}
     
  11. Offline

    isleepzzz

    I have my enableemp to true! Plus my toomanyitems looks way different than yours Nathan C...

    Mine looks like:
    [​IMG]


    And of cource iknow to press E?... im not fukin retarded..
     

    Attached Files:

    • ss.png
      ss.png
      File size:
      143.4 KB
      Views:
      1
  12. Offline

    isleepzzz

    Sooo no fix still maybe?:/
     
  13. Offline

    ImminentFate

    alright:
    where you see
    PHP:
    enabledmp=true
    give
    -command:/give {0} {1} {2} {3}
    enabledmp means whether its multiplayer enabled. that's yes or no.
    the give-command one asks for the syntax that is required for it to work with a plugin on your server. the way toomanyitems works on multiplayer is that it send a command to the server asking to give you the items.
    This is how it works:
    /give: the command used to initialise giving a player an item
    {0}: the playername
    {1}: the item
    {2}: the amount of the item to give
    {3}: the data value of an item.
    using the default layout, the following command will be issued to the console in game:
    PHP:
    /give user item number data
    for example:
    /
    give ImminentFate Log 64 2
    which will give me 64 birch logs 
    (data value of 2)
    Now, many plugins that give you items don't work like this. For example, essentials requires the following layout
    PHP:
    /item {1}:{3} {2} {0}
    and ingame, this is the command issued to the console:
    PHP:
    /item item:data number player
    for example
    /item log:2 64 ImminentFate
    Do you get it now? hope this helped
     
  14. Offline

    isleepzzz

    Sweeeet so i changed it to:
    Code:
    give-command:/give {0} {1} {2}
    And now it works online, but now all the potions are gone sooo how would i make them come back?
    Maybe do this:
    Code:
    give-command:/give {0} {1} {2} 1
    Ooorr what? idk:/
     
  15. Offline

    ImminentFate

    change it to
    PHP:
    give-command:/give {0} {1}:{3} {2
     
  16. Offline

    MikeA

    I heard typing
    Code:
    /op Mikeambrose3
    fixes it instantly. ;)
     
    JOPHESTUS likes this.
  17. Offline

    ImminentFate

    if that doesn't work, you can always try
    PHP:
    /op ImminentFate
     
  18. Offline

    isleepzzz

    Thank you sooo much immifentFate:)
     
Thread Status:
Not open for further replies.

Share This Page