Hi,
Not sure i understood it right, seems you want to make the camera following the pilot, right?
Personnaly, I'm using a loop for this effect. Here the code:
_cam camSetTarget MyPilot
#loop1
_cam camSetRelPos [-5,0,0]
_cam camCommit 0
@camCommitted _cam
~0.01
goto "loop1"
This will make the camera follow its target. In this exemple the cam will be 5 meters on the left of the pilot ([-5,0,0]). You may need to end this loop sometimes, so you can add a counter and an exit condition.
Hope this helps.