This isn't really a console command, but...
_____________________________
________________
function PUT A VEHICLES NAME HERE::onImpact(%this,%obj,%data)
{
%speed = vectorLen(%obj.getVelocity());
if(%speed > %obj.dataBlock.minMiniJetSpeed)
%trans = %obj.getTransform();
%p = new Projectile()
{
dataBlock = jeepFinalExplosionProjectile;
initialVelocity = "0 0 0";
initialPosition = %trans;
sourceObject = %obj;
sourceSlot = 0;
client = %obj.client;
};
MissionCleanup.add(%p);
if(%obj.destroyed)
return;
%obj.setDamageLevel(%this.maxDamage);
%obj.destroyed = 1;
%obj.schedule(10,"finalExplosion");
if(isObject(%obj.spawnBrick.client.minigame))
%respawn = %obj.spawnBrick.client.minigame.vehicleReSpawnTime;
%obj.spawnBrick.schedule(%respawn,"spawnVehicle");
}
_____________________________
________________
Taken from Strato's planes: Spitfire, B17G, and in the Mass Release.
PUT A VEHICLES NAME HERE
Kinda self-explanitory, and it should work...
Holy crap. Quadruple post. Sorry.