Remove all placed entities on server?
anyone know a way that i could remove everything i have placed on a server by using a command
I know /remove all has this but i have to be at the building and looking at it 
I just want to remove everything i have placed with a simple command
deleteby ID
i typed deleteby ID in console did not work :)
Im kidding i didnt really

I need a plugin to do it :)
Not sure it's the best method but this works
foreach (var entity in UnityEngine.Object.FindObjectsOfType<BaseEntity>()) if (entity.OwnerID == player.userID) entity.Kill();​
thanks runescape - you helped me in discord and it works fine.