[Solved] Easy question this time - taskMgr

If I add a task to taskMgr in a method, how can I ask the taskMgr if the task it’s still there next time that the method is called?. (and I dont mean to print taskMgr)

If you look in the TaskManager API reference page, you can see there is the hasTaskNamed function… call it with the name of the task and it will return a boolean whether the task is still there.

Thank You. I knew it had to exist a function but I didn’t know very well how to look for it.