The timer datatype doesn't tick down, it just stays set to whatever value you set it.
Is there another (maybe built into IS?) datatype to server the same function?
Moderator: MacroQuest Developers
Code: Select all
function main()
{
DeclareVariable AssistTimer timer script
AssistTimer:Set[100]
while 1
{
echo ${AssistTimer}
wait 1
}
} 