As OciXCrom told you, timestamps and get_systime() are in SECONDS.
Either do the math yourself to convert seconds to hours/minutes/seconds, or you can use the below with this
include.
PHP Code:
new iTimestamp = get_systime() - 198;
new iYears,iMonths,iDays,iHours,iMinutes,iSeconds;
timestamp_diff( iTimestamp , get_systime() , iYears,iMonths,iDays,iHours,iMinutes,iSeconds );
server_print( "Time Left: %d years, %d months, %d days, %d hours, %d minutes, %d seconds", iYears,iMonths,iDays,iHours,iMinutes,iSeconds );
Output
Code:
Time Left: 0 years, 0 months, 0 days, 0 hours, 3 minutes, 18 seconds
__________________