1. How get all prefabs which contains LootContainer
     
  2. Try something like:
    Code:
    var containers = BaseEntity.serverEntities.Where(x => x is LootContainer)
     
  3. No, i need get prefabs, not instances
     
  4. Ok, another question, i need all string prefabs which contains scipt LootContainer
     
  5. So you need the full prefab names? Like assets/prefabs/whatever? If so simply search in google finding prefab names for oxide and you are destined to find results. Im pretty sure there is a tool to do this in rust as well(under some oxide category)
     
  6. I solve this problem, i handle this event on OnEntitySpawn() {...}