plugPlugin: ConditionalEvents

This plugin allows you to add different conditions to certain events. If these conditions are acomplished, then custom actions will be executed. The possibilities of what you can do with the plugin ar

We're using ConditionalEvents to add a few features and slightly customize some server features. Specifically, when you check the events folder, you will find config files like the following:

block_message.yml
Events:
  # Block unwanted message with the mark of [ingored] in the message content
  block_unwanted_message: {}
commands.yml
Events:
  # Handles the /mgui and /mcmmo commands. You can remove this event if you have decided to use the McmmoGui plugin or the default DeluxeMenu setup instead.
  mcmmo_command: {}
  # Handle /vault, /vaults command that will open a custom GUI from DeluxeMenu 
  vault_command: {}
common.yml
Events:
  # The plugin xHeadTurns have a bug that we need to reload it every restart to make the head render
  # This simple hack even will reload the plugin everytime you join, back to server spawn!
  xheadturns_join: {}
  xheadturns_back_to_spawn: {}
  # Quick access to commands like /craft and /ec by shift right-clicking on a crafting table. This feature is mainly intended for players with the MVP rank.
  crafting_table_features_listener: {}
join_quit_motd.yml
Events:
  # Display server MOTD when player join.
  player_join_motd: {}
sounds.yml
Events:
  # Adds quick interaction sounds to places where plugins dont support sound effects.
  gui_inventory_click_sound: {}
  auction_click_sound: {}
  sound_message: {}

Last updated