Solved Denizen custom item lore. Black ID for item appearing?

Discussion in 'Bukkit Help' started by MaliciousMan, Jan 8, 2014.

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

    MaliciousMan

    Hey, so when I make a custom item from Denizen's item scripts,
    Code:
    Ancient Scrolls:
        type: item
        material: paper
        display name: Ancient Scrolls
        lore:
        - Worthless indecipherable text
        - spawls about the page.
    in-game it appears like:
    [​IMG]

    My question is: How do I get rid of the black "id:ANCIENT SCROLLS" from the item's dropdown info menu?
     
  2. Offline

    MaliciousMan

    Bump, I am obviously aware that the lore has many grammatical errors in it, it was simply a test item. xD
     
  3. Offline

    Iroh

    Use no_id:
    Code:
    paintballgun:
        type: item
        no_id: true
        material: wood_hoe
        display name: <&b>Paintball Gun
        lore:
        - "<&6>Just a gun <3"
    This is there for denizen to identify item scripts so removing it will make the item no longer easily recognizable by denizen. You will need to check the lore/name to identify in the future.
     
    MaliciousMan likes this.
  4. Offline

    MaliciousMan

    Iroh Tested and it works! Thank you so much! :D By the way, do you have a good reference to use, for all things Denizen related? There wiki is incomplete, as well as the handbook, but I heard their IRC has a chatbot that helps. What's your preference?
     
  5. Offline

    Iroh

    I have learned so much from the IRC it is amazing, they have people online all the time. mcmonkey, calico-kid, and BlackCoyote, and aufdemrand (author) have helped me with my scripting. I would recommened the IRC channel. Oh an a quick note on the bot:
    !event <name>
    returns a list of matching events (for world scripts)
    !tag <name>
    returns a list of matching tags (player.location and stuff like that)
    !cmd <name>
    returns a list of matching commands (actions)
     
  6. Offline

    MaliciousMan

    Iroh Sweet, alright. Thanks man.
     
Thread Status:
Not open for further replies.

Share This Page