插件介绍
添加一个 GUI,允许玩家快速将物品分类到容器中
Quick Sort adds a new GUI menu when looting containers and players. Players can choose what type of items they want to put in the container, or even loot all items from the container. Also supports automated looting containers that isn't accepting players items.
Called when a player tries to open a container. Returning a non-null value prevents the container being autolooted and Ui will not appear.
主要用途
主要用于gui、管理工具、物品、库存等服务端功能。 本插件由 MONaH 发布,当前目录记录版本为 v1.8.11,uMod 累计下载 64,431 次。
适用场景
- 需要管理、审计或维护能力的服务器
- 需要调整建造、物品、制作或采集体验的服务器
- 希望改善玩家交互与日常体验的社区服务器
功能分类
查看 uMod 官方英文简介
Adds a GUI that allows players to quickly sort items into containers
权限节点
quicksort.useAllows player to use Quick Sort UI and features
quicksort.lootallAllows player use Loot All feature
quicksort.autolootallAllows player use Automated Loot All feature
授权示例:oxide.grant user 玩家名 权限节点;撤销使用 oxide.revoke。
指令说明
/qs on - Enable GUI
/qs off - Disable GUI
/qs auto - toggle automated looting
/qs <s | style> <center | lite | right | custom> - change GUI style
/qs <c | conatiner> <main | wear | belt> - add/remove container type from the sort (if they are enabled in the configuration).
相关依赖
- Backpacks
配置说明
{ "Global settings": { "Default enabled": true, "Default UI style (center, lite, right, custom)": "right", "Loot all delay in seconds (0 to disable)": 0, "Enable loot all on the sleepers": false, "Auto loot all enabled by default": false, "Default enabled container types": { "Belt": false, "Main": true, "Wear": false }, "Chat steamID icon": 0, "Chat command": [ "qs", "quicksort" ], "Excluded containers": [ "assets/prefabs/deployable/single shot trap/guntrap.deployed.prefab", "assets/prefabs/npc/autoturret/autoturret_deployed.prefab", "assets/prefabs/npc/flame turret/flameturret.deployed.prefab", "assets/prefabs/npc/sam_site_turret/sam_site_turret_deployed.prefab", "assets/prefabs/npc/sam_site_turret/sam_static.prefab" ] }, "Custom UI Settings": { "AnchorsMin": "0.5 1.0", "AnchorsMax": "0.5 1.0", "OffsetsMin": "192 -137", "OffsetsMax": "573 0", "Color": "0.5 0.5 0.5 0.33", "ButtonsColor": "0.75 0.43 0.18 0.8", "LootAllColor": "0.41 0.50 0.25 0.8", "TextColor": "0.77 0.92 0.67 0.8", "TextSize": 16, "CategoriesTextSize": 14 } }
官方配置示例
{
"Global settings": {
"Default enabled": true,
"Default UI style (center, lite, right, custom)": "right",
"Loot all delay in seconds (0 to disable)": 0,
"Enable loot all on the sleepers": false,
"Auto loot all enabled by default": false,
"Default enabled container types": {
"Belt": false,
"Main": true,
"Wear": false
},
"Chat steamID icon": 0,
"Chat command": [
"qs",
"quicksort"
],
"Excluded containers": [
"assets/prefabs/deployable/single shot trap/guntrap.deployed.prefab",
"assets/prefabs/npc/autoturret/autoturret_deployed.prefab",
"assets/prefabs/npc/flame turret/flameturret.deployed.prefab",
"assets/prefabs/npc/sam_site_turret/sam_site_turret_deployed.prefab",
"assets/prefabs/npc/sam_site_turret/sam_static.prefab"
]
},
"Custom UI Settings": {
"AnchorsMin": "0.5 1.0",
"AnchorsMax": "0.5 1.0",
"OffsetsMin": "192 -137",
"OffsetsMax": "573 0",
"Color": "0.5 0.5 0.5 0.33",
"ButtonsColor": "0.75 0.43 0.18 0.8",
"LootAllColor": "0.41 0.50 0.25 0.8",
"TextColor": "0.77 0.92 0.67 0.8",
"TextSize": 16,
"CategoriesTextSize": 14
}
}{
"Error.NoPermission": "You do not have permission to use this command!",
"Format.All": "All",
"Format.Ammo": "Ammo",
"Format.Attire": "Attire",
"Format.Components": "Components",
"Format.Construction": "Construction",
"Format.Deployables": "Deployables",
"Format.Deposit": "Deposit",
"Format.Disabled": "<color=#B22222>Disabled</color>",
"Format.Electrical": "Electrical",
"Format.Enabled": "<color=#228B22>Enabled</color>",
"Format.Existing": "Existing",
"Format.Food": "Food",
"Format.LootAll": "Loot All",
"Format.Medical": "Medical",
"Format.Misc": "Misc",
"Format.Prefix": "<color=#00FF00>[Quick Sort]</color>: ",
"Format.Resources": "Resources",
"Format.Tools": "Tools",
"Format.Traps": "Traps",
"Format.Weapons": "Weapons",
"Info.AutoLootAll": "Automated looting is now {0}",
"Info.ContainerType": "Quick Sort for container type {0} is now {1}",
"Info.QuickSort": "Quick Sort GUI is now {0}",
"Info.Style": "Quick Sort GUI style is now {0}",
"Error.Syntax": "List Commands:\n<color=#FFFF00>/{0} on</color> - Enable GUI\n<color=#FFFF00>/{0} off</color> - Disable GUI\n<color=#FFFF00>/{0} auto</color> - Enable/Disable automated looting\n<color=#FFFF00>/{0} <s | style> <center | lite | right | custom></color> - change GUI style\n<color=#FFFF00>/{0} <c | conatiner> <main | wear | belt></color> - add/remove container type from the sort"
}更新日志
本站记录 uMod 官方插件信息。完整的历史更新日志请参阅 uMod 官方页面。
安装方法
- 确认服务器已安装 Oxide / uMod 或兼容的 Carbon 框架。
- 登录本站后点击"下载",由 uMod 官方地址获取作者发布的文件。
- 将 .cs 文件放入服务器的
oxide/plugins目录。 - 观察服务端控制台,确认插件编译并成功加载。
- 具体配置、权限、指令和依赖请查看原作者的 uMod 页面。
使用前注意
- Rust 更新后,请先确认插件是否仍兼容当前服务端版本。
- 修改配置前建议备份原配置文件,并在测试服验证后再部署到正式服。
- 若插件依赖其他扩展或库,以 uMod 原作者页面的最新说明为准。
- 本站中文内容用于辅助理解,遇到版本差异时以官方英文文档和源码为准。
中文介绍由 uMod 官方简介翻译整理。插件著作权、许可证、完整文档和最新发布状态均以原作者及 uMod 官方页面为准。