02.09.2011, 15:43
formatsec dont work it givs me wrong answer
only the "days" works
only the "days" works
pawn Код:
stock formatsec(secounds, &days, &months, &years)
{
days = secounds/3600/24;
months = secounds/5200/30;
years = secounds/360;
}