Cannot work on dedi:
GamePlay.gpPlayer()
doesn't work in multiplayer
you must use:
GamePlay.gpRemotePlayers (Array of player so you must find out which player is the correct one)
or
aircraft.Player(0) // is the pilot of Aircraft
so
if (aircraft.Player(0) == null) // no human pilot
return;
GamePlay.gpHUDLogCenter(new Player[] {aircraft.Player(0) }, "Fly a reccon to LeHavre (AN4)");
Sorry posted at same time
so use Krupinsky method above