SupremeContainers

Description

To make the player experience even better, we have called SupremeContainers into the game. With these boxes you can give your players a prize in a fun way. With this highly configurable plugin you can give your players money, exp or a prize through a command. This way, the possibilities are really endless.

Commands

CommandsPermissionsDescription

/supremecontainers give <player> <type> <amount>

supremecontainers.admin

Gives a player a certain reward container.

<type> will be the name of the reward container itself.

Adding/removing items

Adding your own reward boxes is fairly easy and will be explained below.

Item container (container which will give a random command as reward)

CrateKeys:
  name: "CrateKeys"
  message: "&6&lSupply&e&lContainers&r &8➠ &eYou received %reward% from the Key container!"
  title:
    enabled: true # Will the title appear when opening a reward container
    message: "&6&k! &f%item% &e&k!" # Title 
    submessage: "&7&oVote Key Container" # Sub title
    reveal_from_right: true # Animation will be displayed from right to left
    color_after_randomization: "&a" # Final color after the animation is over
    fadein_ticks: 0
    stay_ticks: 20
    fadeout_ticks: 5
    update_ticks: 20
  sound: # You can find a list of sounds at the bottom of this page
    enabled: true
    type: "ENTITY_EXPERIENCE_ORB_PICKUP"
    volume: 10
    pitch: 1
  rewards: # Rewards that will be chosen from
    1:
      name: "Vote" # Name of the reward (will be displayed on the title)
      chance: 50 # Win percentage (total must be 100)
      commands: # Reward command (supports multiple commands)
        - "crazycrate give physical vote 1 %player%"
    2:
      name: "Rare"
      chance: 25
      commands:
        - "crazycrate give physical rare 1 %player%"   
  item:
    material: "PLAYER_HEAD" # When using a custom player head
    skin: 'http://textures.minecraft.net/texture/7090102c16c2aeef91e3d77a5a375096cc8265c34bf9e1820b871f4449fb6e'
    name: "&e&lCrate keys container" # Title of the physical item
    lore: # Lore of the physical item
      - "&7This container draws 1 random prize."
      - ""
      - "&a&lRight Click &r&7to open this container"
    durability: 0
    glow: false

You can copy this whole section to add a new 'command' reward box to the itemcontainers.yml file.

Number containers (container which will give a random number as reward)

GoblinsBagOfGold:
  name: "Money"
  min: 1500 # Minimum amount a player will receive
  max: 10000 # Maximum amount a player will receive
  message: "&a&l+ $%number%" # Chat message when the player received his reward
  title:
    enabled: true
    message: "&a&l%number%"
    submessage: "&7&oBag Of Gold"
    reveal_from_right: true
    color_after_randomization: "&a&l"
    fadein_ticks: 0
    stay_ticks: 40
    fadeout_ticks: 5
    update_ticks: 20
  sound:
    enabled: true
    type: "ENTITY_EXPERIENCE_ORB_PICKUP"
    volume: 10
    pitch: 1
  commands:
    - "eco give %player% %number%"
  item:
    material: "PLAYER_HEAD"
    skin: 'http://textures.minecraft.net/texture/14aeab01c04f36ba887b7bda8d9c538bc9686dbbce7e3a5bb10f308c50302bc4'
    name: "&a&lGoblins Bag Of Gold"
    lore:
      - "&7This mysterious bag of gold belongs"
      - "&7to a goblin, open it quickly to"
      - "&7see how much is in it!"
      - ""      
      - "&a&lRight Click &r&7to open this container"
    durability: 0
    glow: false

You can copy this whole section to add a new 'command' reward box to the numbercontainers.yml file.

Last updated