Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

Yeah its in here https://www.redguides.com/docs/projects/macroquest/reference/data-types/datatype-dynamiczone/Is there a TLO for this? Not to be confused with the amount of time remaining on an active task, which I believe is all we have here: https://www.redguides.com/docs/projects/macroquest/reference/data-types/datatype-task/
Thanks Wired!
#Event TaskTimer "'#1#' replay timer: #2#d:#3#h:#4#m remaining."
#Event TaskTimer2 "You may not request this shared task because you must wait #1#d:#2#h:#3#m before you can do another task of this type."
Sub Event_TaskTimer(string line, string taskname, string days, string hours, string mins)
|/echo TaskTimer: ${taskname} - ${days}d - ${hours}h - ${mins}m Timer: ${Math.Calc[${Math.Calc[${hours}*6000]}+${Math.Calc[${mins}*100]}].Int}
/if (!${Defined[${taskname}timer]}) {
/declare "${taskname}timer" timer outer ${Math.Calc[${Math.Calc[${hours}*36000]}+${Math.Calc[${mins}*600]}+600].Int}
} else {
/varset "${taskname}timer" ${Math.Calc[${Math.Calc[${hours}*36000]}+${Math.Calc[${mins}*600]}+600].Int}
}
/return
Sub Event_TaskTimer2(string line, string days, string hours, string mins)
|/echo TaskTimer2 ${TaskGetName} - ${days}d - ${hours}h - ${mins}m Timer: ${Math.Calc[${Math.Calc[${hours}*6000]}+${Math.Calc[${mins}*100]}].Int}
/if (!${Defined[${TaskGetName}timer]}) {
/declare "${TaskGetName}timer" timer outer ${Math.Calc[${Math.Calc[${hours}*36000]}+${Math.Calc[${mins}*600]}+600].Int}
} else {
/varset "${TaskGetName}timer" ${Math.Calc[${Math.Calc[${hours}*36000]}+${Math.Calc[${mins}*600]}+600].Int}
}
/varset GetMissionFailed TRUE
/echo NewTimer: ${${TaskGetName}timer}
/return
