Starting/Stopping Gateway Timer Scripts

Is there a way to Start/Stop Gateway Timers?

No, the only thing you can do is make a memory tag that controls when the script actually runs:run = system.tag.read("Path/To/MemoryTagForRunning").value if run: ...... # your codeSo, if you write a 0 to the memory tag it won’t run.