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.
|