16.11.2010, 16:17
(
Последний раз редактировалось NewbBeginner; 16.11.2010 в 20:17.
)
Solved - Thanks
// Near top of script
new count;
// When the question is sent
count = GetTickCount();
// When answered
printf("It took %d to get a right answer!", GetTickCount() - count);
count = 0;
printf("It took %d second to get a right answer!", ( GetTickCount( ) - count ) / 1000 );