Here the heart script, he works with two other:
_________________________________________________________
_Muni = NearestObject [Vehicle(Player), _This Select 4]
? IsNull _Muni : Exit
_Type= _Muni
_CamOffsetX =0
_CamOffsetY =0
_CamOffsetZ =0
_Cam = "Camera" CamCreate GetPos _Muni
_Cam CameraEffect ["Internal", "Back"]
#Boucle
SetAccTime 0.2
_Cam CamSetPos [(GetPos _Muni Select 0) + _CamOffsetX , (GetPos _Muni Select 1) + _CamOffsetY, (GetPos _Muni Select 2)+ _CamOffsetZ]
_Cam CamSetTarget [((GetPos _Muni Select 0) + ((Sin GetDir _Muni) * 5000)), (GetPos _Muni Select 1) + (((Cos GetDir _Muni) * 5000)), (GetPos _Muni Select 2)]
_Cam CamCommit 0
?(_Muni Distance Player > 1000):Goto "Fin"
?(Alive _Type):Goto "Boucle"
?Not(Alive _Type):Goto "Fin"
#Fin
SetAccTime 1
_Cam CameraEffect ["Terminate", "Back"]
CamDestroy _Cam
Exit
_________________________________________________________
The command i need must be before this line :
_Cam = "Camera" CamCreate GetPos _Muni
Personnaly, i don't think that could help