EffectBoots
  • 👋Welcome
  • ⚙️First install
  • ❔FAQ
    • ❓FAQ
    • ⚙️Action list
    • 📑How to use
    • 🔧How to configure
    • 🛡️Permissions
    • 🔬Developer API
      • Getting API
      • Usage
  • Other
    • 🛑Legal
    • 🖥️Server hosting
    • 🤝Credits
    • ☕Donation
Powered by GitBook
On this page
  • Disable boots in certain world
  • Costomize selector entity
  • Create, remove ore edit boots
  • Boots file
  • Search boots
  • Assign boots
  • Boots particle
  • Certain boots with permission
  • Set Boots leather color
  • Custom commands
  • Creating a menu (GUI)
  • Fill item in menus (GUIs)
  1. FAQ

How to configure

PreviousHow to useNextPermissions

Last updated 7 days ago

Disable boots in certain world

DisabledWorlds:
  - gameworld #World name
  - nether_world #Another world name

An infinite number of worlds can be entered.


Costomize selector entity

Selector:
  Name: '&3&lBoots selector' #Name of the entity.
  Entity: VILLAGER #Type of the entity.
  Baby: false #The entity should be a baby if possible.
  Actions: #Actions that are executed.
    - '[MENU] bootsbrowse'

A list of all available entities can be found . Some things from the list are not available for your server version or cannot be used as an entity, for example ARROW.


Create, remove ore edit boots

1

Boots file

Open the Boots.yml in the EffectBoots folder located in the plugins folder.

2

Search boots

Search for boots you want to remove or edit. If you want to add new ones, you can simply copy existing ones and paste them with a different name. Please make sure you copy and paste them correctly!

3

Assign boots

For example, after you have created new boots, you have to give them to the player. To do this, you can use the integrated GUI (menu) function to assign boots to a player by clicking on them. To do this, open the Menus folder in the EffectBoots folder and either create a new menu or edit an existing one. If you have created or edited your menu, you must now use the SETBOOTS action under Actions. For example, if your boots are called RainyBoots, you assign them with the following action: [SETBOOTS] RainyBoots


Boots particle

RainyBoots: #Boots group name.
  Name: '&bRainyBoots' #Item display name.
  Material: LEATHER_BOOTS:AQUA #Item material.
  Glow: false #Makes the item glow. (Enchant effect)
  Particle: #Particles that are shown when walk or sneak.
    Walk: #Behavior of the walk particle.
      Type: WATER_SPLASH #Which particles should be displayed.
      Amount: 5 #Amount of particles.
      Height: 0.1 #Height of the particles (starts at the feet).
      Effect: SIMPLE #What effect should the particles have.
    Sneak: #Behavior of the sneak particle.
      Type: DRIP_WATER
      Amount: 3
      Height: 1.8
      Effect: RANDOM

Certain boots with permission

To get certain boots only with a certain permission you have to edit the menu (GUI) where you select the boots. Then you must use the [PERMISSION] action before the actions that this permission requires are executed. Example:

CookieBoots:
  Slot: 14
  Name: '&cCookieBoots &6(VIP)'
  Material: LEATHER_BOOTS:MAROON
  Glow: false
  Actions:
    - '[CLOSE]'
    - '[PERMISSION] effectboots.cookieboots#&cThis boots is only for &6VIP &cplayers.'
    - '[SETBOOTS] CookieBoots'
    - '[MESSAGE] &aThe selected boots were equipped.'

Set Boots leather color

Changing the color of leather boots is easy. Just add a double dot to the LEATHER_BOOTS material and then add the color. For example: LEATHER_BOOTS:YELLOW


Custom commands

CustomCommands:
  boots: #Main command.
    Aliases: #Other commands that execute the main command.
    - boot
    - shoes
    Actions: #Actions that are executed.
    - '[MESSAGE] &7Boots menu opens...'
    - '[MENU] bootsbrowse'

Creating a menu (GUI)

To create a menu, you must create a new file in the EffectBoots/Menus/ folder, for example test.yml. You can open the menu either with the command /EffectBoots opengui test or with the action [MENU] test.

Slots: 9 #How many slots should the menu have? (9, 18, 27, 36, 45, 54)
Title: Boost #Menu title.
Items: #The items that are displayed in the menu.
  GhostBoots: #Item group name.
    Slot: 21 #Item slot.
    Name: '&fGhostBoots' #Item display name.
    Material: LEATHER_BOOTS:GRAY #Item material.
    Glow: false #Makes the item glow. (Enchant effect)
    Actions: #Actions that are executed.
      - '[CLOSE]'
      - '[SETBOOTS] GhostBoots'
      - '[MESSAGE] &aThe selected boots were equipped.'
    Lore: #Item lore.
      - '&7Barely seen, never forgotten.'
      - '&7Silent, spectral, stylish.'
      - '&r'
      - '&eClick to equip!'
  YoloBoots:
    Slot: 22
    Name: '&1YoloBoots'
    Material: LEATHER_BOOTS:BLUE
    Glow: false
    Actions:
      - '[CLOSE]'
      - '[SETBOOTS] YoloBoots'
      - '[MESSAGE] &aThe selected boots were equipped.'
    Lore:
      - '&7Fearless fashion for'
      - '&7bold adventurers.'
      - '&r'
      - '&eClick to equip!'

Fill item in menus (GUIs)

fill: #Item group name.
  Slot: -1 #Item is set everywhere where there is no item.
  Name: '&r' #Item display name.
  Material: GRAY_STAINED_GLASS_PANE #Item material.

To see all effect possibilities click on "How to use". To see all available particle effects: - for the latest MC Version. - for the legacy MC Version. (Replace the number 1.12.2 with your server version if it does not suit you)

❔
🔧
here
Click here
Click here