About Drop Stopper
Drop Stopper plugin keeps dropped items from being despawned when they clip/fall through the terrain.
Works:
- Inside a base
- Underground
- Outside
- In a minicopter/scrap heli
- Underwater
This plugin does not currently fix:
- Items dropped on Cargo, Boats, or Scrap Piles in the ocean
Configuration:
This plugin does not contain a configuration file!
Permissions:
dropstopper.excluded - Disables the 'dropstopper.use' permission of the given user or group
dropstopper.use - Grants the given user or group the ability to use this plugin
Chat Commands:
This plugin does not have chat commands!
Console Commands:
This plugin does not have console commands!
API Calls:
[HookMethod("API_AddItemToDropStop")]
public void API_AddItemToDropStop(Item item, BaseEntity entity)
Description: Takes an item (that has an entity associated) like "OnItemDropped" Oxide API callback and tracks it with DropStopper
Usage: DropStopper.Call("API_AddItemToDropStop", item, entity);
[HookMethod("API_AddDroppedItemContainerToDropStop")]
public void API_AddDroppedItemContainerToDropStop(ulong owner_id, DroppedItemContainer dropped_item_container)
Description: Take in a player OwnerID and a FacePunch class type "DroppedItemContainer" and tracks it with DropStopper
Usage: Plugin.DropStopper.Call("API_AddDroppedItemContainerToDropStop", OwnerId, Container);