📦
AquaticCrates v3
  • Getting Started
  • Commands
  • Compatibility
  • ✏️Configuring
    • Basics
    • Crate
      • Visuals
      • Interactions
      • Hologram
      • Open Prices
      • Open Requirements
      • Open Restrictions
      • Open Cooldown
    • Mass Opening
    • Keys
      • Interactions
    • Rewards
      • Rarities
      • Win Limits
      • Actions
      • Rewards Menu
    • Preview
    • Milestones
    • Reroll
    • Animation
      • Open Animation
      • Idle Animation
      • Fail Animation
      • Actions
    • Reward & Crate Limits
    • Item Settings
    • Examples
  • 💻Developer API
    • Basics
Powered by GitBook
On this page
  • Settings
  • Offset
  • Static Hologram
  • Animated Hologram
  • Lines Types
  • text
  • item
  • animated
  1. Configuring
  2. Crate

Hologram

Using this you setup the Crate hologram. The crate hologram is only visible while no fail/open animation is being played! When fail/open animation is started, the hologram is hidden

Settings

Offset

Offset of the hologram location

example:

offset: "0;3;0" # x;y;z

Static Hologram

hologram:
  offset: "0;3;0"
  lines:
    - type: "text"
      stay: 20
      text: "<gradient:#8833de:#5424a6>Another Frame\n&f\n&7[Left-Click] &fto Preview\n&7[Right-Click] &fto Open\n&7[Shift-Right-Click] &fto quick Open"
      line-width: 200
      height: 0.5
      has-shadow: true
      is-see-through: false
      default-background: false
      background-color: "255;255;255;0"

Animated Hologram

hologram:
  offset: "0;3;0"
  lines:
    - type: "animated"
      height: 0.5
      frames:
        - type: "text"
          stay: 20
          text: "<gradient:#8833de:#5424a6>Another Frame\n&f\n&7[Left-Click] &fto Preview\n&7[Right-Click] &fto Open\n&7[Shift-Right-Click] &fto quick Open"
          line-width: 200
          height: 0.5
          has-shadow: true
          is-see-through: false
          default-background: false
          background-color: "255;255;255;0"
        - type: "text"
          stay: 20
          text: "<gradient:#8833de:#5424a6>Example Crate\n&f\n&7[Left-Click] &fto Preview\n&7[Right-Click] &fto Open\n&7[Shift-Right-Click] &fto quick Open"
          line-width: 200
          height: 0.5
          has-shadow: true
          is-see-through: false
          default-background: true

Lines Types

text

This line type uses Text Display in order to display the hologram line.

Options:

  • text - the text of the line ("\n" is possible ot use)

  • height - height of the line (used for calculation of spaces between lines)

  • line-width - width of the text display (default: 150)

  • scale - scale of the text display (default: 1.0)

  • billboard - billboard of the display, depending on the billboard the line is being rotated (default: CENTER, possible values: FIXED, VERTICAL, HORIZONTAL, CENTER)

  • conditions - view conditions of the line (optional...)

  • fail-line - a line that should be displayed when the conditions are not met

  • has-shadow (default: false)

  • default-background - when true default background color is being used, otherwise background-color is used

  • background-color - color of the background, default-background has to be set to false (example: "255;255;255;255" - red, green, blue, alpha)

  • is-see-through (default: true)

item

animated

PreviousInteractionsNextOpen Prices

Last updated 2 months ago

✏️