Ember Menus

Community menus

Menus shared by server owners. Install one in game with /emenus browse.

Ember Plugins › Community menus

What is here

Loading the listing…

Installing one

You do not download anything from this page. Run this in game:

/emenus browse

Pick a menu and you are shown every command it can run before anything is written to disk. Commands that run as the server are listed in red. Only then does an install button appear.

A menu is a script, not a picture. A menu carries click actions, and a [console] action runs a command as the server. Installing a menu written by a stranger is running their script with full rights, in the same way installing a plugin is.

The plugin lists the commands. It does not judge them, because it cannot: no software can tell lp user %player% parent add vip from lp user attacker parent add admin by looking at it. Read the red ones. If you would not type it into your own console, do not install it.

Sharing one of yours

Post the file in our Discord, in the #menu-sharing channel. It lives in plugins/EmberMenus/menus/ and is named after the menu.

Two things to do before you send it:

  1. Take your server's specifics out. Warp names, rank nodes and IP addresses belong to you, not to whoever installs it. Leave sensible placeholders and say in the description what needs changing.
  2. Say what it needs. If it only makes sense with EssentialsX or a particular PlaceholderAPI expansion, tell us, and that gets fetched automatically for whoever installs it.

Add a share: block at the top and it is ready to publish as is:

share:
  name: "Player Warps"
  author: "your name"
  icon: ENDER_EYE
  description:
    - "A warp list that charges a fee per jump."
  requires_plugins: []
  requires_expansions: [Vault]

menu:
  title: "&8Warps"
  rows: 5
  ...
Everything is read by a person before it appears. That is slower than an upload button, and it is the only honest way to run a share hub for files that can run commands. Expect a day or two.

Running your own listing

Point the plugin at your own host and you get a private listing for your network, which is useful if you run several servers and want the same menus on all of them.

community:
  enabled: true
  url: "https://menus.yournetwork.com/"

The format is documented on the community menus page. Setting enabled: false removes the browser entirely.