+edit: those args are fine, unless you want %this, %collider, %hit
I got it to work using the individual stuntplanevehicle datablock
package crap
{
function stuntPlaneVehicle::onCollision(%this, %obj, %col)
{
echo(%obj TAB %col);
parent::onCollision(%this, %obj, %col);
}
};
activatepackage(crap);
I cannot get it working using WheeledVehicleData or anything like that.
So, if you're only using one vehicle for this derby, go into it's script and find
datablock WheeledVehicleData(SpaceShuttleVehicle)
and replace.