hello
nem tudtam letölteni azt a verziót amit linkeltél nem volt letöltõ link rákerestem google-ben nem tudom azonos e a script de ezt találtam:
http://forum.sa-mp.com/showthread.php?t=3860én tesztként lefuttattam a saját függvényem az ment, ezt nem próbáltam, nézd meg megfelel e, vagy máshol van a probléma
Ezt cseréld le ( 1587. sorban kezdõdik nálam )
BeHuman(ticks)
{
new HumanTime[10], minutes, seconds, secstring[2], msecstring[3];
minutes=ticks/60000;
ticks=ticks-(minutes*60000);
seconds=ticks/1000;
ticks=ticks-(seconds*1000);
if(seconds <10) format(secstring,sizeof(secstring),\"0%d\",seconds);
else format(secstring,sizeof(secstring),\"%d\",seconds);
format(HumanTime,sizeof(HumanTime),\"%d:%s\",minutes,secstring);
if(ticks < 10) format(msecstring,sizeof(msecstring),\"00%d\", ticks);
else if(ticks < 100) format(msecstring,sizeof(msecstring),\"0%d\",ticks);
else format(msecstring,sizeof(msecstring),\"%d\",ticks);
format(HumanTime,sizeof(HumanTime),\"%s.%s\",HumanTime,msecstring);
return HumanTime;
}
Erre:
BeHuman(ticks)
{
new HumanTime[10], minutes, seconds;
minutes = floatround((ticks/60000),floatround_floor);
ticks -= (minutes*60000);
seconds = floatround((ticks/1000),floatround_floor);
ticks -= (seconds*1000);
format(HumanTime,sizeof(HumanTime),\"%d:%02d.%03d\",minutes,seconds,ticks);
return HumanTime;
}
máskor privátban inkább csak a témát linkeld mivel privátban nem segítek, mivel másnak is kellhet a válasz