Vehicles requiring certain armor //------------------ // vehicle.cs //------------------ 1. Go to the function called findEmptySeat and right after this part if(%dataBlock.lightOnly) { if(%player.client.armor $= "Light") %minNode = 0; else %message = '\c2Only Scout Armors can pilot this vehicle.~wfx/misc/misc.error.wav'; } put this code in: else if(%dataBlock.nameOnly) { if(%player.client.armor $= "Name") %minNode = 0; else %message = '\c2Only Name Armors can pilot this vehicle.~wfx/misc/misc.error.wav'; } 2. Replace name with whatever armor it is that you will want to replace. //---------------------------- //yourvehiclefile.cs //---------------------------- 3. Now all you have to do is go back into your vehicle file down to the VEHICLE CHARACTERISTICS datablock and put in this: nameOnly = 1; 4. Replace where it says name with your armor name.