View Single Post
  #4  
Old 09-13-2011, 09:34 PM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

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

Last edited by FG28_Kodiak; 09-13-2011 at 09:40 PM.
Reply With Quote