%now% uses the delphi time format: it's functionally equivalent to the unix time, just numerically different.
but you can use it the same way, to calculate the difference between 2 moments.
while the unix time is integer and 1 is a second, the delphi time is real(with point) and 1 is a day.
{.set|x|%now%.}
do something
{.calc|(%now% - {.^x.})/(24*60*60).} seconds passed
you can even make a user-macro yourself to convert between the 2 formats.
http://www.delphifaq.com/faq/f91.shtml