19.07.2011, 23:40
Is that possible to decode mktime? For example:
And that "decode" function would return 10 hours left. Tried to use Blacklite's function, but nope it doesnt work with mktime. It returns bad value so Blacklite's function works only with gettime() + x
Any suggestions to decode mktime?:P
pawn Код:
new year, month, day, hour, minute, second;
getdate(year, month, day);
gettime(hour, minute, second);
new time = mktime(hour+ 10, minute, second, day, month, year);
Any suggestions to decode mktime?:P