17.09.2010, 16:41
Quote:
So, has anyone ever solved the time problem? 1:4.57 and stuff. I think its related to samp 0.3a version because prior to the 0.3 era i havent noticed that bug. And i have a good memory for this kind of thing, hehe. i tried multiplying the seconds by 10 like SFRERKU sugested (on post number 299 on page 30) but still its dosnt get the time corrected. Any solution to this problem?
Also, greatest fs ever downloaded from this forum, nicely done, yagu. |
BeHuman(ticks)
{
new HumanTime[40], minutes, seconds,milliseconds;
minutes=ticks/60000;
ticks=ticks-(minutes*60000);
seconds=ticks/1000;
ticks=ticks-(seconds*1000);
milliseconds=ticks/100;
ticks=ticks-(milliseconds*100);
format(HumanTime,sizeof(HumanTime),"%d.%02d.%02d", minutes,seconds,milliseconds);
return HumanTime;
}