Hello,
I'm currently using Prokreedz 2.31 and changed the code so that the timer looks like that: "00:00:0".
Any ideas how to add the last digit of milisecond? I want it to look like that. "00:00:00"
Code:
if( ShowTime[Alive[i]] == 1 )
{
new colors[12], r[4], g[4], b[4];
new imin = floatround(kreedztime , floatround_floor)/60
new isec = kreedztime - (60*imin)
get_pcvar_string(kz_hud_color, colors, 11)
parse(colors, r, 3, g, 3, b, 4)
set_hudmessage(str_to_num(r), str_to_num(g), str_to_num(b), 0.0265, 0.4764, 0, 0.0, 0.4, 0.0, 0.0, 2)
show_hudmessage(Alive[i], "%02d:%s%.1f (%d|%d) %s ",imin,isec < 10 ? "0" : "",isec,checknumbers[Alive[i]], gochecknumbers[Alive[i]], IsPaused[Alive[i]] ? "| *Paused*" : "")
}
I guess I have to change something in show_hudmessage line.