ClickSort 点击排序 | |
---|---|
![]() |
只需一次点击,即可对库存和箱子进行分类! |
作 者 | ChengZi |
发布时间 | 2016年7月27日 |
支持核心 | Spigot | 原生版本 |
支持版本 | 1.7,1.8,1.9,1.10,1.11,1.12,1.13,1.14,1.15,1.16,1.17,1.18,1.19 |
插件详细介绍
ClickSort 是一款 Bukkit 插件,它极大地简化了玩家整理背包(包括玩家自身背包、箱子、发射器等)的操作。只需简单的单击或双击鼠标,即可实现物品的快速排序。玩家可以根据物品 ID、物品名称进行排序,也可以切换单击或双击模式,或者完全禁用排序功能。所有这些操作都可以在不使用任何命令的情况下,通过在物品栏窗口中点击鼠标来完成,并且这些设置是针对每个玩家单独保存的。
/clicksort reload
命令来重新加载配置。详细信息请参见 配置。ClickSort 的操作方式如下:
从 v1.1.0 版本开始,玩家也可以禁用 Shift 键点击模式的切换(基于每个玩家)。有些玩家可能会发现意外地 Shift 键点击空的物品栏槽位很烦人。为了避免这种情况,玩家可以使用 /clicksort shiftclick
命令来为自己切换 Shift 键点击功能。
同样从 v1.1.0 版本开始,添加了两个命令,允许玩家直接设置他们的排序或点击模式。如果 Shift 键点击模式切换被禁用,这些命令是最有用的:
/clicksort sort <id|name|group|value>
/clicksort click <middle|double|single|swap|none>
ClickSort 尝试尊重那些通过取消 InventoryClickEvent 来进行保护的插件,它会尽可能晚地运行自己的事件处理程序,并忽略已取消的事件。
完全匿名的使用统计数据通过 bStats 收集。
# Configuration file for ClickSort
#
# item-name-file:
# The name of the YAML file to use for item name/ID lookup
#
# click-mode:
# The default click mode. Valid values are:
# - double: Sort inventories on double-left-click
# - single: Sort inventories on single-left-click of an empty slot
# - middle: Sort inventories on middle-click
# - swap: Sort inventories on swap-key click (usually F key)
# - none: Disable click sorting completely
#
# sort-mode:
# The default sort mode. Valid values are:
# - id: Sort by item ID
# - name: Sort by item name
# - group: Sort by item group (e.g. all types of wood together)
# - value: Sort by estimated item value (based on Minecraft market values)
#
# disable-shiftclick:
# If true, disable cycling of click & sort modes using shift-click
#
# use-worldedit:
# If true, ClickSort will use the WorldEdit API to protect regions
# from sorting, if WorldEdit is present. If WorldEdit is not
# present, this setting is ignored.
#
# sort-creative:
# If true, ClickSort will sort inventories in creative mode.
#
# auto-update-item-names:
# If true, ClickSort will attempt to automatically update item names
# from the server. This will only work for vanilla items.
# This setting is ignored if sort-mode is not "name".
#
item-name-file: items.yml
click-mode: middle
sort-mode: id
disable-shiftclick: false
use-worldedit: true
sort-creative: true
auto-update-item-names: true