Dropbox can be looted with Loot AllFixed

You can loot a dropbox with quicksort using lootall. On the side of entering materials into the dropbox, making it available for all with quicksort. 

 

 

You can disable drop boxes from having the LootAll function

Just find private void OnLootEntity, and on the line below it you will find some containers already listed such as VendingMachine and ShopFront, just add another one for DropBox

That should fix your problem

I fixed that in this way:

private void OnLootEntity(BasePlayer player, BaseEntity entity)
{
	var check = entity.GetComponent<DestroyOnGroundMissing>();
	if (check != null && check.enabled == false) return;
	if (permission.UserHasPermission(player.UserIDString, permUse) && !(entity is VendingMachine) && !(entity is ShopFront) && !(entity is BigWheelBettingTerminal)  && (!(entity is DropBox) || (entity as DropBox).PlayerBehind(player)))
	{
		UserInterface(player);
	}
}

Sorry, wrong forum topic...

Added the ability to exclude entities by adding their ShortPrefabName to exclusion list in the latest version
Locked automatically