1. Welcome to LilyPad. Download the project, explore the forums, and create your own LilyPad network.


    If you use the software and enjoy it or have a question, or would like to contribute to the future of the software directly or through resources, please sign up and join our little community.

Suggestions for Bukkit plugins??

Discussion in 'Programming' started by 123isme1, Dec 15, 2013.

  1. 123isme1

    123isme1 New Member

    So I recently learned Java, and have made 5 plugins in a matter of 12ish hours and I was wondering if anyone had any suggestions/requests/challanges for simple plugins for me to code (I'm bored right now, got nothing to do).
    NOTE: All my plugins are on my BukkitDev waiting for approval
  2. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

    I am looking for a plugin that disables breaking items from a ItemFrame. Its a bug and I want to get it fixed :)
  3. 123isme1

    123isme1 New Member

    Uh....all I know how to do(right now) is add crafting recipes and set the join message o_O ill try though...
  4. 123isme1

    123isme1 New Member

    Nvm, I'm scared to try...
  5. The_Zip

    The_Zip Active Member Resource Contributor

    Try to get more familiar with more of the API, so if all you know how to do is add a crafting recipe and a join message, how about make a plugin that runs off of a command next?
  6. 123isme1

    123isme1 New Member

    Ahh, great challange, I have already started!
    • Like Like x 1
  7. Shawshark

    Shawshark Active Member Resource Contributor

    a plugin that doesn't allow someone to break a item frame?
  8. Matt

    Matt Forum Moderator & Contributor Staff Member Moderator Contributor

    Yeah, world guard is bugged and people can hit items from the item frame out of it. So that means, free items.
  9. Shawshark

    Shawshark Active Member Resource Contributor

    This works for me
    Code (java):
              @EventHandler
              public void frame(HangingBreakByEntityEvent e) {
                  if(e.getEntity() instanceof ItemFrame) {
                      e.setCancelled(true);
                  }
              }
    Last edited: Dec 26, 2013
    • Agree Agree x 1
  10. MultiNetwork

    MultiNetwork Member

    A hat-plugin that they a item in the inventory and choose a hat

Share This Page