07.07.2013, 01:32
If you don't want to calculate all the times you can always use these macros I just created:
Will output:
pawn Код:
#define MS_HOUR(%1) 3600000*%1
#define MS_MINUTE(%1) 60000*%1
pawn Код:
main()
{
printf("%d", MS_HOUR(5));
printf("%d", MS_MINUTE(1));
}
Код:
18000000 60000

