Simple Action Signs

一个轻量级插件,可以将游戏内的告示牌变成可定制的命令执行器。

资源图片
# 简单动作告示牌 一个强大且轻量级的 Minecraft 插件,允许玩家创建带有可选成本要求的交互式动作告示牌。 ## 使用方法 ### 创建动作告示牌 1. 在世界中放置任何告示牌。 2. 以以下格式编写告示牌文本: ``` [标题] (必需) <命令> (必需) <描述> (可选) <成本 / 描述> (可选) ``` ### 示例告示牌设置 ``` [传送] /spawn 传送到主世界 100 ``` ## 权限 | 权限 | 描述 | 默认 | |--------------------|----------------------------------------|---------| | `sas.admin.reload` | 允许重新加载插件 | op | | `sas.admin` | 创建、编辑和销毁动作告示牌 | op | | `sas.use` | 使用/与动作告示牌交互 | op | ## 占位符 | 占位符 | 描述 | |------------------|---------------------------------------| | `@p` | 玩家的名称。 | | `@u` | 玩家的 UUID。 | | `@w` | 玩家当前所在的世界。 | | `@x`, `@y`, `@z` | 玩家当前位置。 | ## 指令 - `/sas reload` - 重新加载插件配置 - 权限:`sas.reload` ## 配置
config.yml ```yml economy: enabled: true prefix: "&a$" language: reload: "&aConfiguration successfully reloaded!" sign-created: "&aAction Sign successfully created!" sign-deleted: "&cAction Sign successfully removed!" sign-edited: "&eAction Sign successfully edited!" sneak-required: "&cYou need to be sneaking to destroy action signs." permission-use: "&cYou do not have permission to do this." not-enough-money: "&cYou do not have enough money to do this." action-not-found: "&cThe action '' does not exist. Did you mean to use a slash command?" list-signs: none-found: "&eNo signs were found." invalid-page: "&cThe page '' doesn't exist. Maximum page is ." title: - "&3=== &bSign Actions &7(Page /) &3===" - "&7Total Signs: " element-format: - "&3. &b" - " &7Placed by: &f" - " &7Command: &f" - " &7Description: &f" - " &7Cost: " footer: - "&7Use &f/sas list &7to navigate." ```