MSToMinAndSec(ms){ new s[30],sec=floatround(ms/1000),min=floatround(sec/60); format(s,sizeof(s),"%02d:%02d",min,floatround(sec - min*60)); return s; }