Plugin Needed

Discussion in 'Archived: Plugin Requests' started by Veloxo, Jan 6, 2013.

  1. Offline

    Veloxo

    Suggested name: JaffaCakes

    What I want: I'd like to have a plugin which can give you a command which give you jaffacakes. nad the command gives you cookies but renamed as Jaffa Cakes

    Ideas for commands: /jaffacakes

    Ideas for permissions: jaffacakes.allowed

    When I'd like it by: maximum date by 10th
     
  2. Offline

    BeeJayMendrinos

    not sure whether it is possible to rename an item.... (other than weapons)
     
  3. Offline

    LaxWasHere

    This plugin is possible, just not worth the time.
     
  4. Offline

    BeeJayMendrinos

    very true
     
  5. Offline

    lcpvp

    I can make it...
    HOWEVER
    I would like you to pm me first.
    This plugin seems sort of like a waste of time, and not many people would use it.
    I could make it for just you, and not release it, since it seems like something only you need for your server.
    Message me and I will talk to you more about it.
     
  6. Offline

    KylexDavis

    Pretty sure I could make this tomorrow easily if lcpvp hasn't already.
    Get back to me by then if you want.
     
  7. Offline

    colony88

    Could you possibly tell me how you would do that? I looked at some code from another renaming plugin, but it seemed overly complicated.
     
  8. Offline

    Veloxo

    Yes, I would love if you are able to do it :)
     
  9. Offline

    Chloe-chan

    Here you go ! :D
    Download here.

    Commands:
    /JaffaCakes - Gives a cookie named "JaffaCakes"
    /JaffaCakes <number> - Gives the amount of cookies mention named "JaffaCakes"

    Permissions:
    jaffacakes.allowed - Permission to use /JaffaCakes

    Here is how I did it. :D Pretty straight forward. ^^

    Code:
    public static ItemStack setName(ItemStack is, String name)
        {
            ItemMeta m = is.getItemMeta();
            m.setDisplayName(name);
            is.setItemMeta(m);
            return is;
        }
    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 8, 2016

Share This Page