BungeeShortcut

⭐ — (0 endorsements) 📥 65 downloads 📌 v1.0 📅 12/19/2025
🟡 Updated this year

By koirdsuzu · bungeecord

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 12/18/2025 📅 Created: 12/19/2025

🔍 Analysis

  • 🏆 #7 of 17 bungeecord mods in this game by downloads

📋 About This Mod

✅ ✅ Create command shortcuts via `config.yml`
✅ ✅ Permission system for each shortcut
✅ ✅ Tab completion support
✅ ✅ Reload configuration without restarting the server
✅ ✅ Help command to list all shortcuts

# BungeeShortcut (#english) | (#japanese) --- ## English ### Description BungeeShortcut is a BungeeCord plugin that allows you to create custom command shortcuts via configuration file. Instead of registering commands programmatically, you can easily add shortcuts in `config.yml` and use them immediately. ### Features - ✅ Create command shortcuts via `config.yml` - ✅ Permission system for each shortcut - ✅ Tab completion support - ✅ Reload configuration without restarting the server - ✅ Help command to list all shortcuts ### Installation 1. Download the latest `BungeeShortcut.jar` from the releases page 2. Place it in your BungeeCord `plugins` folder 3. Start or reload your BungeeCord server 4. The plugin will automatically create `plugins/BungeeShortcut/config.yml` ### Configuration Edit `plugins/BungeeShortcut/config.yml`: ```yaml shortcuts: lobby: "server lobby" hub: "server hub" spawn: "warp spawn" home: "essentials:home" ``` **Format:** - Key: The shortcut command name (e.g., `lobby`) - Value: The actual command to execute (e.g., `"server lobby"`) **Example:** - `/lobby` → executes `/server lobby` - `/hub` → executes `/server hub` - `/spawn` → executes `/warp spawn` ### Commands | Command | Description | Permission | |---------|-------------|------------| | `/bungeeshortcut` or `/bsc` | Show help and list all shortcuts | Everyone | | `/bungeeshortcut help` | Show help and list all shortcuts | Everyone | | `/bungeeshortcut reload` | Reload configuration file | `bungeeshortcut.commands.reload` | | `/<shortcut>` | Execute the shortcut command | `bungeeshortcut.shortcut.<shortcut>` | ### Permissions | Permission | Description | Default | |------------|-------------|---------| | `bungeeshortcut.shortcut.<shortcut>` | Permission to use a specific shortcut command | `op` | | `bungeeshortcut.commands.help` | Permission to use `/bungeeshortcut help` | Everyone | | `bungeeshortcut.commands.reload` | Permission to use `/bungeeshortcut reload` | `op` | **Examples:** - `bungeeshortcut.shortcut.lobby` - Permission to use `/lobby` - `bungeeshortcut.shortcut.hub` - Permission to use `/hub` - `bungeeshortcut.commands.reload` - Permission to reload config ### Tab Completion - `/bungeeshortcut` → suggests `help` and `reload` (if you have permission) - Shortcut commands support tab completion (currently returns empty list) ### Building from Source 1. Clone this repository 2. Make sure you have Maven installed 3. Run: ```bash mvn clean package ``` 4. The compiled JAR will be in `target/BungeeShortcut-1.0.jar` ### Requirements - BungeeCord 1.21 or higher - Java 8 or higher ### How It Works When a player executes a shortcut command (e.g., `/lobby`), the plugin: 1. Checks if the player has the required permission (`bungeeshortcut.shortcut.lobby`) 2. Executes the actual command (`/server lobby`) using BungeeCord's command dispatcher 3. The player receives the same chat messages and results as if they executed the original command directly ### Notes - After modifying `config.yml`, use `/bungeeshortcut reload` to apply changes without restarting - Shortcut commands can accept arguments, which will be appended to the base command - Example: `/lobby player1` → executes `/server lobby player1` --- ## Japanese ### 説明 BungeeShortcutは、設定ファイルでコマンドのショートカットを簡単に作成できるBungeeCordプラグインです。プログラムでコマンドを登録する必要がなく、`config.yml`にショートカットを追加するだけですぐに使用できます。 ### 機能 - ✅ `config.yml`でコマンドのショートカットを作成 - ✅ 各ショートカットに権限システム - ✅ Tab補完サポート - ✅ サーバー再起動なしで設定をリロード可能 - ✅ すべてのショートカットを一覧表示するヘルプコマンド ### インストール方法 1. リリースページから最新の`BungeeShortcut.jar`をダウンロード 2. BungeeCordの`plugins`フォルダに配置 3. BungeeCordサーバーを起動またはリロード 4. プラグインが自動的に`plugins/BungeeShortcut/config.yml`を作成します ### 設定方法 `plugins/BungeeShortcut/config.yml`を編集してください: ```yaml shortcuts: lobby: "server lobby" hub: "server hub" spawn: "warp spawn" home: "essentials:home" ``` **形式:** - キー: ショートカットコマンド名(例: `lobby`) - 値: 実際に実行するコマンド(例: `"server lobby"`) **例:** - `/lobby` → `/server lobby`を実行 - `/hub` → `/server hub`を実行 - `/spawn` → `/warp spawn`を実行 ### コマンド一覧 | コマンド | 説明 | 権限 | |---------|------|------| | `/bungeeshortcut` または `/bsc` | ヘルプとすべてのショートカット一覧を表示 | 全員 | | `/bungeeshortcut help` | ヘルプとすべてのショートカット一覧を表示 | 全員 | | `/bungeeshortcut reload` | 設定ファイルをリロード | `bungeeshortcut.commands.reload` | | `/<ショートカット名>` | ショートカットコマンドを実行 | `bungeeshortcut.shortcut.<ショートカット名>` | ### 権限一覧 | 権限 | 説明 | デフォルト | |------|------|-----------| | `bungeeshortcut.shortcut.<ショートカット名>` | 特定のショートカットコマンドを使用する権限 | `op` | | `bungeeshortcut.commands.help` | `/bungeeshortcut help`を使用する権限 | 全員 | | `bungeeshortcut.commands.reload` | `/bungeeshortcut reload`を使用する権限 | `op` | **例:** - `bungeeshortcut.shortcut.lobby` - `/lobby`を使用する権限 - `bungeeshortcut.shortcut.hub` - `/hub`を使用する権限 - `bungeeshortcut.commands.reload` - 設定をリロードする権限 ### Tab補完 - `/bungeeshortcut` → `help`と`reload`を提案(権限がある場合) - ショートカットコマンドはTab補完をサポート(現在は空リストを返します) ### ソースからビルド 1. このリポジトリをクローン 2. Mavenがインストールされていることを確認

# BungeeShortcut

(#english) | [日本語](#japanese)

### Description

BungeeShortcut is a BungeeCord plugin that allows you to create custom command shortcuts via configuration file. Instead of registering commands programmatically, you can easily add shortcuts in `config.yml` and use them immediately.

### Features

  • ✅ Create command shortcuts via `config.yml`
  • ✅ Permission system for each shortcut
  • ✅ Tab completion support
  • ✅ Reload configuration without restarting the server
  • ✅ Help command to list all shortcuts

### Installation

1. Download the latest `BungeeShortcut.jar` from the releases page 2. Place it in your BungeeCord `plugins` folder 3. Start or reload your BungeeCord server 4. The plugin will automatically create `plugins/BungeeShortcut/config.yml`

### Configuration

Edit `plugins/BungeeShortcut/config.yml`:

```yaml shortcuts: lobby: "server lobby" hub: "server hub" spawn: "warp spawn" home: "essentials:home" ```

Format: - Key: The shortcut command name (e.g., `lobby`) - Value: The actual command to execute (e.g., `"server lobby"`)

Example: - `/lobby` → executes `/server lobby` - `/hub` → executes `/server hub` - `/spawn` → executes `/warp spawn`

### Commands

| Command | Description | Permission | |---------|-------------|------------| | `/bungeeshortcut` or `/bsc` | Show help and list all shortcuts | Everyone | | `/bungeeshortcut help` | Show help and list all shortcuts | Everyone | | `/bungeeshortcut reload` | Reload configuration file | `bungeeshortcut.commands.reload` | | `/` | Execute the shortcut command | `bungeeshortcut.shortcut.` |

### Permissions

| Permission | Description | Default | |------------|-------------|---------| | `bungeeshortcut.shortcut.` | Permission to use a specific shortcut command | `op` | | `bungeeshortcut.commands.help` | Permission to use `/bungeeshortcut help` | Everyone | | `bungeeshortcut.commands.reload` | Permission to use `/bungeeshortcut reload` | `op` |

Examples: - `bungeeshortcut.shortcut.lobby` - Permission to use `/lobby` - `bungeeshortcut.shortcut.hub` - Permission to use `/hub` - `bungeeshortcut.commands.reload` - Permission to reload config

### Tab Completion

  • `/bungeeshortcut` → suggests `help` and `reload` (if you have permission)
  • Shortcut commands support tab completion (currently returns empty list)

### Building from Source

1. Clone this repository 2. Make sure you have Maven installed 3. Run: ```bash mvn clean package ``` 4. The compiled JAR will be in `target/BungeeShortcut-1. 0.jar`

### Requirements

  • BungeeCord 1. 21 or higher
  • Java 8 or higher

### How It Works

When a player executes a shortcut command (e.g., `/lobby`), the plugin: 1. Checks if the player has the required permission (`bungeeshortcut.shortcut.lobby`) 2. Executes the actual command (`/server lobby`) using BungeeCord's command dispatcher 3. The player receives the same chat messages and results as if they executed the original command directly

  • After modifying `config.yml`, use `/bungeeshortcut reload` to apply changes without restarting
  • Shortcut commands can accept arguments, which will be appended to the base command
  • Example: `/lobby player1` → executes `/server lobby player1`

## Japanese

BungeeShortcutは、設定ファイルでコマンドのショートカットを簡単に作成できるBungeeCordプラグインです。プログラムでコマンドを登録する必要がなく、`config.yml`にショートカットを追加するだけですぐに使用できます。

  • ✅ `config.yml`でコマンドのショートカットを作成
  • ✅ 各ショートカットに権限システム
  • ✅ Tab補完サポート
  • ✅ サーバー再起動なしで設定をリロード可能
  • ✅ すべてのショートカットを一覧表示するヘルプコマンド

### インストール方法

1. リリースページから最新の`BungeeShortcut.jar`をダウンロード 2. BungeeCordの`plugins`フォルダに配置 3. BungeeCordサーバーを起動またはリロード 4. プラグインが自動的に`plugins/BungeeShortcut/config.yml`を作成します

`plugins/BungeeShortcut/config.yml`を編集してください:

```yaml shortcuts: lobby: "server lobby" hub: "server hub" spawn: "warp spawn" home: "essentials:home" ```

形式: - キー: ショートカットコマンド名(例: `lobby`) - 値: 実際に実行するコマンド(例: `"server lobby"`)

例: - `/lobby` → `/server lobby`を実行 - `/hub` → `/server hub`を実行 - `/spawn` → `/warp spawn`を実行

| コマンド | 説明 | 権限 | |---------|------|------| | `/bungeeshortcut` または `/bsc` | ヘルプとすべてのショートカット一覧を表示 | 全員 | | `/bungeeshortcut help` | ヘルプとすべてのショートカット一覧を表示 | 全員 | | `/bungeeshortcut reload` | 設定ファイルをリロード | `bungeeshortcut.commands.reload` | | `/<ショートカット名>` | ショートカットコマンドを実行 | `bungeeshortcut.shortcut.<ショートカット名>` |

| 権限 | 説明 | デフォルト | |------|------|-----------| | `bungeeshortcut.shortcut.<ショートカット名>` | 特定のショートカットコマンドを使用する権限 | `op` | | `bungeeshortcut.commands.help` | `/bungeeshortcut help`を使用する権限 | 全員 | | `bungeeshortcut.commands.reload` | `/bungeeshortcut reload`を使用する権限 | `op` |

例: - `bungeeshortcut.shortcut.lobby` - `/lobby`を使用する権限 - `bungeeshortcut.shortcut.hub` - `/hub`を使用する権限 - `bungeeshortcut.commands.reload` - 設定をリロードする権限

  • `/bungeeshortcut` → `help`と`reload`を提案(権限がある場合)
  • ショートカットコマンドはTab補完をサポート(現在は空リストを返します)

### ソースからビルド

1. このリポジトリをクローン 2. Mavenがインストールされていることを確認

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
koirdsuzu
Version
1.0
Downloads
65
Endorsements
0
Category
bungeecord
Created
12/19/2025
Updated
12/18/2025
Game Versions
1.11.1, 1.11.2, 1.12, 1.12.1, 1.12.2
Tags
cursed, decoration, utility

🔧 How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Plugins →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Plugins versions does BungeeShortcut support?

The author lists 1.11.1, 1.11.2, 1.12, 1.12.1, 1.12.2, 1.13. Other versions may work but are untested by the author.

What is the latest version of BungeeShortcut?

Version 1.0, published 2025-12-18 with 65 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More bungeecord 👤 More by koirdsuzu 🔎 Similar Mods 🌐 Best bungeecord (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods