MagicCosmetics
English
English
  • Welcome
  • Type of cosmetics
  • Cosmetics creation
    • Original
      • Hat
      • Backpack
      • Off Hand
      • Balloon
      • Spray
    • With ItemsAdder
      • Hat
      • Backpack
      • Off Hand
      • Balloon
      • Spray
    • With Oraxen
      • Hat
      • Backpack
      • Off Hand
      • Balloon
      • Spray
  • 🗂️Menus
    • For ItemsAdder
      • Colors
      • Items
      • Menus & Panels
  • Tokens creation
  • Frequently Asked Questions
Powered by GitBook
On this page
  1. Cosmetics creation
  2. With ItemsAdder

Balloon

Here you will learn how to create a balloon in the ItemsAdder form.

Balloons are a bit tricky but not as complicated as backpacks. Let's start with a balloon without support from other plugins:

  • Cosmetic file:

cosmetics:
  balloon:
    permission: 'cosmetics.balloon'
    item:
      display: '&bHot air balloon'
      item-adder: 'balloon' #balloon item id
      lore:
        - ''
        - '&aThis balloon will fly through the skies!'
      unbreakable: true
      glow: false
      hide-attributes: true
      modeldata: -1 #model data is not required here.
    colored: true
    type: BALLOON
    space: 1 #here you can increase/decrease the height of the balloon
    big-head: false #This option changes the position of the balloon item from the head to the right hand.
    distance: 100 #distance to where the players can see the cosmetic.
    invisible-leash: false #If this option is active the balloon string will not be visible.
    instant-follow: true #The balloon will follow you faster and almost instantaneously.
    rotation: #If you are not going to use this, you can delete the path
      enabled: false #select whether this globe will be able to rotate.
      type: RIGHT #RIGHT, UP, ALL(it's a crazy rotation.)
  • BlockBench file of balloon:

Now let's create a backpack with the ModelEngine implementation:

cosmetics:
  balloon:
    permission: 'cosmetics.balloon'
    item:
      display: '&bHot air balloon'
      item-adder: 'balloon' #balloon item id
      lore:
        - ''
        - '&aThis balloon will fly through the skies!'
      unbreakable: true
      glow: false
      hide-attributes: true
      modeldata: -1 #model data is not required here.
    colored: true
    type: BALLOON
    meg: #The model id of the Model Engine plugin. Attention: This will only be seen while you have the balloon equipped, that is, it will not replace the item nor will it be seen in the gui!
      model: custom-model
      colorable-parts: #this is optional if you want all parts of the model to be painted remove this path
        - 'partid1'
        - 'partid2'
      animations: #this path is optional, if you do not set anything it will default to "walk" and "idle". 
        walk: animation-walk
        idle: animation-idle

and that's it.

Finally, let's create a dongle with the ItemsAdder custom entities implementation:

cosmetics:
  balloon:
    permission: 'cosmetics.balloon'
    item:
      display: '&bHot air balloon'
      item-adder: 'balloon' #balloon item id
      lore:
        - ''
        - '&aThis balloon will fly through the skies!'
      unbreakable: true
      glow: false
      hide-attributes: true
      modeldata: -1 #model data is not required here.
    colored: true
    type: BALLOON
    ia: #The model id of the ItemsAdder plugin. Attention: This will only be seen while you have the balloon equipped, that is, it will not replace the item nor will it be seen in the gui!
      model: namespace:custom-model
      colorable-parts: #It is not yet ready for ItemsAdder entities - this is optional if you want all parts of the model to be painted remove this path
        - 'partid1'
        - 'partid2'
      animations: #this path is optional, if you do not set anything it will default to "walk" and "idle". 
        walk: animation-walk
        idle: animation-idle
PreviousOff HandNextSpray

Last updated 2 years ago

Display mode - Transition Y Position