PDA

View Full Version : HudLog Text?


king1hw
06-26-2012, 09:34 PM
GamePlay.gpHUDLogCenter(null, "LW- Fly a fighter sweep over Dover. Ju87s leave AY18 for Dover in appr. 15 minutes into mission!", new object[] { });


the Hud text above is to long and if you use \n it does not go to the next line any help getting HudLog text on 2 lines.

Thanks

hc_wolf
06-26-2012, 11:11 PM
Correct. It is broken at the moment.

FG28_Kodiak
06-27-2012, 04:17 AM
You can show your Message with a time Delay.

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!"));