View Single Post
Old 01-10-2008, 04:20 PM   #6
AVE
СержантВ запасе
 
Join Date: Jan 2008
Posts: 39
Re: Таймер в Homeworld2

Quote:
Originally Posted by [FX]Storm View Post
Code:
	local str = format("%2.0f:%2.0f:%2.0f", h, m, s);
Немного поправлю. Красивее выглядит таймер с нулями:
Code:
	local str = format("%02.0f:%02.0f:%02.0f", h, m, s);
AVE is offline   Reply With Quote