免费插件

Drone Storage

无人机存储

允许玩家向遥控无人机部署一个小储藏室

dronestorage

原作者:WhiteThunder · 查看 uMod 官方页面 ↗

插件介绍

允许玩家向遥控无人机部署一个小储藏室

Rust has released built-in drone storage as of the October 2025 Rust update. This plugin has not been updated yet. If you have ideas on how this plugin can be continued, let us know in the Help/Discussions tab.

Since the March 2023 Rust update, drones now sway in the wind, but attached entities do not sway. This causes undesirable visuals to players observing a drone that is being controlled. There is no known fix at this time.

Note: In order for manual or automatic deployment to work, the player will need permission to at least 1 storage capacity (see the Capacity permissions section below).

Players with the following permissions will see UI buttons while remotely controlling a drone at a computer station.

主要用途

主要用于drone、storage等服务端功能。 本插件由 WhiteThunder 发布,当前目录记录版本为 v1.3.3,uMod 累计下载 8,807 次。

适用场景

  • 希望扩展原版服务器功能的服主

功能分类

dronestorage
查看 uMod 官方英文简介

Allows players to deploy a small stash to RC drones

权限节点

dronestorage.deploy

Allows the player to deploy a stash onto a drone using the dronestash command.

dronestorage.deploy.free

Allows using the dronestash command for free (no stash item required).

dronestorage.autodeploy

Drones deployed by players with this permission will automatically have a stash, free of charge.Not recommended if you want to allow players to deploy other attachments such as auto turrets since they are incompatible.

dronestorage.lockable

Drone stashes deployed by players with this permission may have a code lock or key lock deployed to them.

Not recommended if you want to allow players to deploy other attachments such as auto turrets since they are incompatible.

Note: In order for manual or automatic deployment to work, the player will need permission to at least 1 storage capacity (see the Capacity permissions section below).

Players with the following permissions will see UI buttons while remotely controlling a drone at a computer station.

dronestorage.viewitems

Allows remotely viewing the stash contents.

dronestorage.dropitems

Allows remotely dropping the stash contents at the drone position.

dronestorage.togglelock

Allows remotely locking and unlocking the stash, if it has an attached lock.

Note: The drone controller is prevented from remotely interacting with the items in the stash.

The following permissions come with this plugin's default configuration. Granting one to a player determines the capacity of stash containers they deploy onto drones.

dronestorage.capacity.6

1 row

dronestorage.capacity.12

2 rows

dronestorage.capacity.18

3 rows

dronestorage.capacity.24

4 rows

dronestorage.capacity.30

5 rows

dronestorage.capacity.36

6 rows

dronestorage.capacity.42

7 rows

dronestorage.capacity.48

8 rows

You can add more capacity amounts in the plugin configuration (CapacityAmounts), and the plugin will automatically generate permissions of the format dronestorage.capacity.<amount> when reloaded. If a player has permission to multiple capacity amounts, the highest will apply.

授权示例:oxide.grant user 玩家名 权限节点;撤销使用 oxide.revoke

指令说明

dronestash

Deploys a stash onto the drone the player is looking at, consuming a stash item from their inventory unless they have permission for free stashes.

相关依赖

  • Drone Settings

配置说明

Default configuration:

{ "TipChance": 25, "AssignStorageOwnership": true, "CapacityAmounts": [ 6, 12, 18, 24, 30, 36, 42, 48 ], "DisallowedItems": [], "DisallowedSkins": [], "UISettings": { "AnchorMin": "0.5 1", "AnchorMax": "0.5 1", "OffsetMin": "0 -75", "OffsetMax": "0 -75", "Buttons": { "Spacing": 25, "Width": 85, "Height": 26, "TextSize": 13, "ViewButtonColor": "0.44 0.54 0.26 1", "ViewButtonTextColor": "0.97 0.92 0.88 1", "DropButtonColor": "0.77 0.24 0.16 1", "DropButtonTextColor": "0.97 0.92 0.88 1", "LockButtonColor": "0.8 0.4 0 1", "LockButtonTextColor": "0.97 0.92 0.88 1", "UnlockButtonColor": "0.8 0.4 0 1", "UnlockButtonTextColor": "0.97 0.92 0.88 1" } } }

TipChance (0 - 100) -- Chance that a tip message will be shown to a player when they deploy a drone, informing them that they can use the /dronestash command. Only applies to players with the dronestorage.deploy permission who do not have the dronestorage.autodeploy permission.

AssignStorageOwnership (true or false) -- Determines whether deploying a stash onto a drone will set you as the stash owner. This is relevant if you use the Prevent Looting plugin because it will prevent other players from opening the stash if ownership is set. Note: Regardless of what you set this option to, the computer station UI buttons to view and drop the stash contents are not affected by stash ownership.

CapacityAmounts

List of numbers used to generate permissions of the format dronestorage.capacity.<amount> (see permissions section).

DisallowedItems

List of item short names (like "autoturret") to disallow in drone stashes.

DisallowedSkins

List of item skin ids (numbers) to disallow in drone stashes.

UISettings

Options to control the display of the UI.Note: It is not possible to position the UI relative to the computer station UI consistently for all resolutions because modded UIs use scaling whereas the computer station UI uses the same fixed pixel offsets for all resolutions.

Note: It is not possible to position the UI relative to the computer station UI consistently for all resolutions because modded UIs use scaling whereas the computer station UI uses the same fixed pixel offsets for all resolutions.

官方配置示例

{
  "TipChance": 25,
  "AssignStorageOwnership": true,
  "CapacityAmounts": [
    6,
    12,
    18,
    24,
    30,
    36,
    42,
    48
  ],
  "DisallowedItems": [],
  "DisallowedSkins": [],
  "UISettings": {
    "AnchorMin": "0.5 1",
    "AnchorMax": "0.5 1",
    "OffsetMin": "0 -75",
    "OffsetMax": "0 -75",
    "Buttons": {
      "Spacing": 25,
      "Width": 85,
      "Height": 26,
      "TextSize": 13,
      "ViewButtonColor": "0.44 0.54 0.26 1",
      "ViewButtonTextColor": "0.97 0.92 0.88 1",
      "DropButtonColor": "0.77 0.24 0.16 1",
      "DropButtonTextColor": "0.97 0.92 0.88 1",
      "LockButtonColor": "0.8 0.4 0 1",
      "LockButtonTextColor": "0.97 0.92 0.88 1",
      "UnlockButtonColor": "0.8 0.4 0 1",
      "UnlockButtonTextColor": "0.97 0.92 0.88 1"
    }
  }
}
{
  "UI.Button.ViewItems": "View Items",
  "UI.Button.DropItems": "Drop Items",
  "UI.Button.LockStorage": "Lock",
  "UI.Button.UnlockStorage": "Unlock",
  "Tip.DeployCommand": "Tip: Look at the drone and run <color=yellow>/dronestash</color> to deploy a stash.",
  "Info.StashName": "Drone Stash",
  "Error.NoPermission": "You don't have permission to do that.",
  "Error.BuildingBlocked": "Error: Cannot do that while building blocked.",
  "Error.NoDroneFound": "Error: No drone found.",
  "Error.NoStashItem": "Error: You need a stash to do that.",
  "Error.AlreadyHasStorage": "Error: That drone already has a stash.",
  "Error.IncompatibleAttachment": "Error: That drone has an incompatible attachment.",
  "Error.DeployFailed": "Error: Failed to deploy stash.",
  "Error.CannotPickupDroneWithItems": "Cannot pick up that drone while its stash contains items."
}

更新日志

最新版本: v1.3.3
最后版本发布: 2026-06-30
最后更新(条目): 2026-07-18

本站记录 uMod 官方插件信息。完整的历史更新日志请参阅 uMod 官方页面

安装方法

  1. 确认服务器已安装 Oxide / uMod 或兼容的 Carbon 框架。
  2. 登录本站后点击"下载",由 uMod 官方地址获取作者发布的文件。
  3. 将 .cs 文件放入服务器的 oxide/plugins 目录。
  4. 观察服务端控制台,确认插件编译并成功加载。
  5. 具体配置、权限、指令和依赖请查看原作者的 uMod 页面。

使用前注意

  • Rust 更新后,请先确认插件是否仍兼容当前服务端版本。
  • 修改配置前建议备份原配置文件,并在测试服验证后再部署到正式服。
  • 若插件依赖其他扩展或库,以 uMod 原作者页面的最新说明为准。
  • 本站中文内容用于辅助理解,遇到版本差异时以官方英文文档和源码为准。
来源说明

中文介绍由 uMod 官方简介翻译整理。插件著作权、许可证、完整文档和最新发布状态均以原作者及 uMod 官方页面为准。