Thread: HudLog Text?
View Single Post
  #3  
Old 06-27-2012, 04:17 AM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

You can show your Message with a time Delay.
Code:
double delay = 0.0;
Timeout(delay, () => GamePlay.gpHUDLogCenter(null, "LW- Fly a fighter sweep over Dover."));
Timeout(delay += 3.0, () => GamePlay.gpHUDLogCenter(null, "Ju87s leave AY18 for Dover in appr. 15 minutes into mission!"));
Reply With Quote