View Single Post
  #3  
Old 04-16-2012, 04:45 AM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

for Hud output you need a timedelay, escape sequences like /n are not working.

so
[code]
double initTime = 0.0;

GamePlay.gpHUDLogCenter(... );

Timeout(initTime += 3, () =>
{
GamePlay.gpHUDLogCenter(... );
});
Timeout(initTime += 3, () =>
{
GamePlay.gpHUDLogCenter(... );
});

etc.

as an alternative for tab you can use PadRight and PadLeft for strings.

Last edited by FG28_Kodiak; 04-16-2012 at 04:53 AM.
Reply With Quote