Boxenplünderer plugin – missing container logs

Hello,

I’m using the Rust plugin Boxenplünderer, and I’ve noticed that for some time now not all containers are being logged correctly.

For refrigerators, vending machines, and some of the newer crates, I can no longer see who has opened or looked into them.

Would it be possible to add the newly introduced Rust items and containers to the plugin?
An update would be really appreciated 👍

Thank you!

Hey there, a while ago the fridges and vending machines were changed and can be hooked up to power, in order to keep food you put inside fresh. Since then BoxLooters does not support these storages anymore. But you can easily re-add those yourself - all you need is a text editor. Find this line in the BoxLooters.cs file, line 222:

  • private bool IsValidType(BaseEntity entity) => !entity.GetComponent<LootContainer>() && (entity is StorageContainer || entity is MiningQuarry || entity is ResourceExtractorFuelStorage || entity is BasePlayer);
Add "entity is Fridge" and "entity is VendingMachine" to the line like so:
  • private bool IsValidType(BaseEntity entity) => !entity.GetComponent<LootContainer>() && (entity is StorageContainer || entity is MiningQuarry || entity is ResourceExtractorFuelStorage || entity is BasePlayer || entity is Fridge || entity is VendingMachine);
Save the file and put it into your plugins folder, then reload BoxLooters. Fridges and Vending Machines should be recognized then.