Skip to content

Custom Head In Items

JyckoS edited this page Aug 24, 2019 · 4 revisions

Using Custom Heads in items

This is very easy, you might wonder where can I get myself some custom heads? You can use websites like https://minecraft-heads.com/.

Let's say I want to create a Doge Head

Come to this link: https://minecraft-heads.com/custom-heads/animals/30031-doge

Scroll down and take the Minecraft-URL section of it.

This is your typical items.yml

Items:
  GOLD:
    name: "&6&lPouch Of Gold"
    lore;
    - "  "
    - "&7Trade your cash into "
    - "&7a &a$10000. "
    discount_lore:
    - "  "
    - "&7Trade your cash into "
    - "&7a &a$10000. "
    material: EMERALD
    blacklisted_perm: "purchased.vip"
    req_perm: "buy.vip"
    damage: 0
    cost: 100
    discount: 0
    action: "BUYPOUCH"

To add a custom texture, simply add this line: head: "<Put your minecraft-url here>"

So it looks something like this:

Items:
  GOLD:
    head: "55be644416f02822d98836975eff940c0e17fd5c2d49e402fef900e0f5c8f879"
    name: "&6&lPouch Of Gold"
    lore:
    - "  "
    - "&7Trade your cash into "
    - "&7a &a$10000. "
    discount_lore:
    - "  "
    - "&7Trade your cash into "
    - "&7a &a$10000. "
    material: EMERALD
    blacklisted_perm: "purchased.vip"
    req_perm: "buy.vip"
    damage: 0
    cost: 100
    discount: 0
    action: "BUYPOUCH"