Hello, I'm trying to spawn a working SAM network using the R-750 and S-750. Placing both units in the editor and flying around get's me shot down. Fantastic! But when I try to spawn them in via .sqf it doesn't work so well. I can get the R-750 to track me but the S-750 just sits there doing nothing. Is there something I need to do to activate a data link between them after I spawn them in? So far I've been testing this with:   t1 = "O_Radar_System_02_F" createVehicle [13363.1,2998.56,0]; createVehicleCrew t1; t2 = "O_SAM_System_04_F" createVehicle [11889.9,2775.91,0]; createVehicleCrew t2;   Thanks.   edit: Checking with vehicleReportRemoteTargets and vehicleReceiveRemoteTargets returns true for the radar reporting and the SAM receiving.   double edit (FTW): Got it. I was under the impression that the R-750's radar would be turned on by default but the object/crew spawn with the behaviourMode at "CARELESS", meaning no radar. So forcing the radar on works. Cheers anyway.