Remove/Unlock all keycard doors?

I am planning to run again Rust tournament in my country. The last 2 of them had to manually fly and remove doors via ent kill and Ubertool pistol. This was the solution I found and worked and can do it this time the same but is there another solution more time friendly that can auto make everyone knock on the door to unlock it without cards or just get rid of all doors automatically? I used to spend time and search first before asking here but all I found was Super Card that does not help in my case.

Thanks in advice, hope someone can help.

Ok. I had a quick look and wrote this for you. 

Its hardcoded for you at the moment, but I could add a config file and release it publicly if its required.

 

namespace Oxide.Plugins{ [Info("Knock Knock", "OfficerJAKE", "1.0.1")] [Description("Opens security doors when knocked on by players")] internal class KnockKnock : RustPlugin { void OnDoorKnocked(Door door, BasePlayer player) {string doorName = door.PrefabName;switch (doorName){case "assets/bundled/prefabs/static/door.hinged.security.green.prefab": case "assets/bundled/prefabs/static/door.hinged.security.blue.prefab": case "assets/bundled/prefabs/static/door.hinged.security.red.prefab": {door.SetOpen(true);break;}default: return;} } }}

Let me know how you go

Sorry for abandoning this thread, Orange helped me for now and gave me one plugin... I guess it's a drag/drop and should remove all keycard doors completely from the doorwars. So my problem is solved but if you plan to publicly release something sure, its a good idea and I think a lot of people might like it just for survival Xrate servers, (non-tournament) you can make so knocking on the door (pressing E) with the keycard or without for true no puzzle experience (permission-based) opens the door without the need of fuses (optional no cards as I mentioned perms based) so people can use it in survival servers. Or releasing something to completely remove the doors is still fine.

If you want and have time do it for the community, but if you do it only for me abandon it, I am fine already.

DOVVYD9FD1pgJ2x.png Flammable

Sorry for abandoning this thread, Orange helped me for now and gave me one plugin... I guess it's a drag/drop and should remove all keycard doors completely from the doorwars. So my problem is solved but if you plan to publicly release something sure, its a good idea and I think a lot of people might like it just for survival Xrate servers, (non-tournament) you can make so knocking on the door (pressing E) with the keycard or without for true no puzzle experience (permission-based) opens the door without the need of fuses (optional no cards as I mentioned perms based) so people can use it in survival servers. Or releasing something to completely remove the doors is still fine.

If you want and have time do it for the community, but if you do it only for me abandon it, I am fine already.

I submitted a public plugin earlier that just opens security door simply by knocking. 

I will add permissions and more options at a later date. 

The plugin is halfway reviewed, I'll post it here when its passed

ok great...

DOVVYD9FD1pgJ2x.png Flammable

ok great...

I have actually done quite a few additions. 

Once the plugin is public, I will be updating it faily soon

yeah saw it... as I mentioned early have another plugin that erases doors completely for my tournament but might add this one to my x2 if people want it... and I am sure a lot of people will like the plugin