When players break a chest and drop item_drop, players can deal damage to it, causing their loot to disappear
In addition, in recent months players have reported that their inventory packages disappear or drop in foundations after their death
Drop problemNot An Issue
Also: When using scrap to buy a PVP base, some players can't enter the PVP area, the plugin will pop them up, not everyone can enter
Merged post
@nivex
heya.
nothing can deal damage to item_drop. it is immune to any form of damage natively
item_drop_backpack does not despawn via the plugin under any circumstances, and if it were spawned by the plugin then it would be ejected outside 10 meters from the dome, making that impossible. this means it's caused by the game or another plugin. it does not make a difference if the dome is disabled. it is a reference to the radius defined by Protection Radius
players are given a message when they're ejected from a raid, unless they're ejected while mounted and common sense would tell the player they're not allowed to enter on that specific mount. so ask them what the message is.
nivexheya.
nothing can deal damage to item_drop. it is immune to any form of damage natively
item_drop_backpack does not despawn via the plugin under any circumstances, and if it were spawned by the plugin then it would be ejected outside 10 meters from the dome, making that impossible. this means it's caused by the game or another plugin. it does not make a difference if the dome is disabled. it is a reference to the radius defined by Protection Radius
players are given a message when they're ejected from a raid, unless they're ejected while mounted and common sense would tell the player they're not allowed to enter on that specific mount. so ask them what the message is.
You say it's impossible, but I tested it countless times, whether it's bullets, C4, RPG can do damage to it, inside the dome
Merged post
Not only item_drop_backpack, but also the backpack dropped by the player after death
Backpacks dropped by players after death may fall under the foundation, causing players to not find their bags
already discussed this with dream, but to anyone else wondering...
item_drop and item_drop_backpack have immortal properties (DroppedItemContainer.baseProtection) and cannot be damaged by any means whatsoever on vanilla servers
it is impossible for this plugin to cause it, or for it to happen on vanilla. the ONLY way to allow it is to alter the above properties using a plugin. raidable bases alters elevators only
notice it is strictly elevators:
Elevator elevator = GameManager.server.CreateEntity("assets/prefabs/deployable/elevator/static/elevator.static.prefab", bottom, rot, true) as Elevator;
elevator.transform.rotation = rot;
elevator.transform.position = bottom;
elevator.transform.localPosition += new Vector3(0f, 0.25f, 0f);
bmgELEVATOR = elevator.gameObject.AddComponent<BMGELEVATOR>();
elevator.Spawn();
bmgELEVATOR.Floors = top.y - bottom.y;
Interface.Oxide.NextTick(() =>
{
if (elevator.IsKilled()) return;
RemoveImmortality(elevator.baseProtection, 0.3f, 1.0f, 1.0f, 0.5f, 0.9f, 0.9f, 0.3f, 0.9f, 0.9f, 1.0f, 0.9f, 0.9f);
RemoveImmortality(elevator.liftEntity.baseProtection, 0.3f, 1.0f, 1.0f, 0.5f, 0.9f, 0.9f, 0.3f, 0.9f, 0.9f, 1.0f, 0.9f, 0.9f);
});
raidable bases does not drop backpacks inside of the dome so it cannot be the cause of backpacks falling underneath foundations either. that is a game bug. i may decide to intercept this like i do every other box container and tool cupboard as a workaround for the game bug.
closing this thread