(AGK version: 108.13)
Submitted: 2013-06-20 15:42:45
Setvirtualresolution(640,480)
SetPrintSize(25)
ResetTimer()

time$=GetCurrentTime()
min$=Mid(time$,4,2)

unix=Val(min$)*60

//As an example, add 31 minutes to the Unix value

mins=31*60
unix=unix+mins

mins=GetMinutesFromUnix(unix)

Repeat
    Printc ("Minutes now are ")
    Print (min$)
    Printc ("In 31 minutes it will be ")
    Print (mins)

    Sync()
Until Timer()>15
End
Help make AGK better by submitting an example for this command!
(All examples are subject to approval)
Login to post an example of your own.