View Single Post
  #2  
Old 11-03-2012, 05:22 AM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

Your mistake:
Code:
GPUserLabel lbl = GamePlay.gpMakeUserLabel(p, BluePlayersArray, "RAF Dunkirk", t, GPUserIconType.Factory);
is the BluePlayerArray, the argument must be the player who created the lable (works in singl player) or Gameplay.gpPlayer() (for dedi server)

to show the lable only to one side use you must use:
Code:
GamePlay.gpDrawUserLabel(BluePlayersArray, lbl);
Reply With Quote