Hooks
Civilization Royale supports a lot of plugins in order to bring unique features to the server.
To integrate with the Matrix Gliders plugin, you must update the hooks section in your config.yml to the following.
hooks:
# Integration with MatrixGliders for glider support.
# Note: Currently, only one MatrixGliders plugin is supported.
# Gliders hook are necessary.
MatrixGliders:
enabled: true
# Specify the default glider ID to assign to all players.
# Ensure that the specified glider ID is valid and exists in the system.
default-glider: common-gliderThis feature would allow players to equip their glider on exiting the dragon scatter. (Essentials extension must be installed.)
To use any item from ItemsAdder, simply enter itemsadder-<item_id> in the material field of the relevant item configuration file.
Example
This is an example of a custom item’s configuration file:
item-settings:
# Material Configuration
# Defines the base material or custom item type for this item.
material:
type: itemsadder-my_swordTo use any item from Nexo, simply enter nexo-<item_id> in the material field of the relevant item configuration file.
Example
This is an example of a custom item’s configuration file:
item-settings:
# Material Configuration
# Defines the base material or custom item type for this item.
material:
type: nexo-my_swordTo use any item from ExecuteableItems, simply enter ei-<item_id> in the material field of the relevant item configuration file.
Example
This is an example of a custom item’s configuration file:
item-settings:
# Material Configuration
# Defines the base material or custom item type for this item.
material:
type: ei-my_swordLast updated