if sek<10 and minuty<10 then
draw_text(view_xview[0]+444,view_yview[0]+710,'0'+string(minuty)+':'+'0'+string(sek))
else
if sek<10 and minuty>=10 then
draw_text(view_xview[0]+444,view_yview[0]+710,string(minuty)+':'+'0'+string(sek))
else
if sek>=10 and minuty>=10 then
draw_text(view_xview[0]+444,view_yview[0]+710,string(minuty)+':'+string(sek))
else
if sek<10 and minuty>=10 then
draw_text(view_xview[0]+444,view_yview[0]+710,'0'+string(minuty)+':'+string(sek))
else break;
jeżeli dodasz zamist średników else, naraz będzie wykonywana tylko jedna z tych funkcji.