package DwandMovingVehicles {
function AdminWandProjectile::onCollision(%this, %obj, %col, %fade, %pos, %normal)
{
if(!isObject(%obj.client)
return;
if(isObject(%col))
{
if(isObject(%obj.client))
{
if(%col.getClassName() $= "Vehicle")
%col.setVelocity("10 0 10");
else
Parent::onCollision(%this, %obj, %col, %fade, %pos, %normal);
}
}
}
};
activatePackage(DwandMovingVehicles);
This might work; it might not. I'm on my phone right now and haven't tested it yet.