Inactive [DEV] BukkitContrib Alpha 0.1.7 [1000]

Discussion in 'Inactive/Unsupported Plugins' started by Afforess, May 21, 2011.

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

    Afforess

    BukkitContrib is superseded by Spout, the new Bukkit/Client framework.
     
  2. Offline

    samsoccerboyz

    I WANT HEROES SO BADLY
     
  3. Offline

    alta189

    @Afforess I am having another issue. If I update the cloak file and set the cloak again, the cloak does not change. I even had it reset all cloaks.
     
  4. Offline

    Nazerb

    So if a plugin uses this mod we need the server version? Is that right?
     
  5. Offline

    K900

    So, do you need BukkitContrib SP installed for skins and stuff to work?
     
  6. Offline

    Afforess

    was on during the last 30 minutes of the old map, but that's it so far. Free time = 0, thanks to this project, and others. ;)

    Perhaps I can get some time on Friday.


    Minecraft checks the old url against the new url, not the old file against the new file (for bandwidth reasons, I assume). You need to reset the player cloak, then set it again if you are changing the file but using the same URL.

    The plugin is for servers, and is just an interface for other plugins. Simply put, it helps do the heavy lifting for other plugins.

    The client mod is optional. If you don't have it though, you will not see any custom cloaks, skins, or titles, or other changes.

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

    Kainzo

    stop hi-jacking :p

    In regards to that Afforess ... "God"? ;)
     
  8. Offline

    alta189

    I have tried this. I used your reset and changing the URL and then changing it back...
     
  9. Offline

    Jan Tojnar

  10. Offline

    Afforess

    Leftover test code, I promise! ;)

    Hmm. Okay, I'll look into this then.

    Good idea. It's long term, but I'll look into it.

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

    Crash

    @Afforess :
    Uhm, I was testing this out with the player crafting table and I don't think the crafting table inventory and player inventory are the same. When I tried with onInventoryClick and clicked on the crafting table result slot it gave me the index 0 and when I tested with event.getInventory().getItem(0) it gave me the item in my quick slot on the very left.
     
  12. Offline

    Afforess

    Correct. 0 is the quick slot.

    The crafting table is not even included in standard bukkit (no way to get it without lots of net.minecraft code) With BukkitContrib check if the inventory is a CraftingInventory, and you can get the crafting slots from it.
     
  13. Offline

    Crash

    So it is possible with BukkitContrib ?
    Do you think you can show me how to get the inventory for the workbench ?
     
  14. Offline

    Afforess

    Definitely.
    The inventory for a workbench is only available when a player is using it (e.g Inventory Open, Close, Click, or Craft). There are no other ways to get to it.

    Check that getInventory() on any of those events instance of CraftingInventory.

    e.g
    Code:
    public void onInventoryOpen(InventoryOpenEvent event) {
        if (event.getInventory() instanceof CraftingInventory()) {
            CraftingInventory crafting = (CraftingInventory)event.getInventory();
            //player crafting table matrix size = 4, workbench = 9
            if (crafting.getMatrix().length == 9) {
                 //do stuff
            }
        }
    }
     
  15. Offline

    TruffleDucks

    What does this do in nubbish terms :D. Does it make your server less laggy?
     
  16. Offline

    Afforess

    Do to your server? Nothing. Nothing at all.
    What does it do to your client? Again, Nothing.

    HOWEVER, it allows other plugins to do previously impossible things. BukkitContrib alone does nothing at all. With other plugins, it opens up a world of opportunities. No harm, only features. ;)
     
  17. Offline

    TruffleDucks

    So what this plugin does is... nothing? It doesn't make the server less laggy? What can my plugins do with this :)
     
  18. Offline

    Afforess

    With BukkitContrib, other plugins can change your skin, cloak, title, detect key presses (outside of chat), and other various tasks. No, this plugin does not make your server less laggy. It doesn't make it laggier either.
     
  19. Offline

    Crash

    Are you sure onInventoryOpen works correctly ? I tried printing something out(nothing in the method but a print) and nothing happened, onInventoryClose works though so it's not the way I'm registering the events
     
  20. Offline

    TruffleDucks

    Ohhh my god... so you can change skins without going on the website? :D
    And doesn't make server laggy :D :D
     
  21. Offline

    Afforess

    Yep. A plugin already lets you change skins/cloaks mid game with BukkitContrib (CapeMe) and NameAWolf allows you to set names over wolf's heads (like player names work).

    Awesome, no?
     
  22. Offline

    TruffleDucks

    Awesome, YES :D
    This is awesome :). If I had a credit card, I would donate like 1 dollar :D
     
  23. Offline

    Afforess

    Should definitely be working.

    (Note: The client sends no inventory open packet. Instead, it occurs on the first click inside a new inventory window. If no clicks are made - no open inventory event).
     
  24. Offline

    TruffleDucks

    Is there any skin plugins yet?
     
  25. Offline

    Afforess

    BukkitContrib Alpha 0.0.5 is up!

    Good News:
    I fixed all of the known bugs in 0.0.4
    Can Hide player titles completely
    Skins/Cloaks update correctly when the URL data changes
    Active player shows correct Skin/Cloak
    New Event: BukkitContribSPEnable, used to detect when a player's BukkitContrib SP mod enables (~2-3 ticks after onPlayerJoin. Use for items that must be run AFTER BukkitContribSP is working)
    Fixed missing chat messages

    Bad News:
    0.0.4 is not compatible with 0.0.5
    Anyone with 0.0.5 that attempts to log on to a server with 0.0.4 will be kicked, and vice versa
    (This is the only time this will happen - I had to rewrite the packet protocol. Future versions will remain backward compatible).

    None yet.

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

    alta189

    What kind of plugin are you looking for?

    Thanks! Very good job, did you see Cape Me?

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

    Afforess

    I did. Nice work! ;)
     
  28. Offline

    Redyugi

    You should update your title. =P lol
     
  29. Offline

    Reterg

    I've searched for info on this but can't seem to find anything. What is CapeMe and where can I get it?
     
  30. Offline

    alta189

  31. Offline

    Reterg

Thread Status:
Not open for further replies.

Share This Page