How do i make TooManyItems work on my server?

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

  1. Offline

    isleepzzz

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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?:/
  2. Offline

    isleepzzz

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    BumP. Plz help me:c
  3. Offline

    Magi1053

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Same problem no idea whats going on
    ~Bump~
  4. Offline

    isleepzzz

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Mann. i wish someone knew. Anyone knows? And how i can make it work for OP only?
  5. Offline

    andrewpo

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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.
  6. Offline

    ImminentFate

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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
  7. Offline

    andrewpo

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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.
  8. Offline

    isleepzzz

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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
  9. Offline

    Nathan C

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Press the E key!

    [IMG]

    This post has been edited 1 time. It was last edited by Nathan C Jun 11, 2012.
  10. Online

    Sayshal

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
  11. Offline

    MisterTwo

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    try making the give line in TooManyItems.txt look like this:

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

    isleepzzz

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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..
  13. Offline

    isleepzzz

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Sooo no fix still maybe?:/
  14. Offline

    ImminentFate

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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
  15. Offline

    isleepzzz

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    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:/
  16. Offline

    ImminentFate

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    change it to
    PHP:
    give-command:/give {0} {1}:{3} {2
  17. Offline

    Mikeambrose3

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    I heard typing
    Code:
    /op Mikeambrose3
    fixes it instantly. ;)
    JOPHESTUS likes this.
  18. Offline

    ImminentFate

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    if that doesn't work, you can always try
    PHP:
    /op ImminentFate
  19. Offline

    isleepzzz

    dev.bukkit.org profile:
    CFUSERNAME
    My Plugins (CFCOUNT)
    Thank you sooo much immifentFate:)

Share This Page