How to fire with delta time?

The delta Time is nothing you can use to fire… Since it is set AFTER the Tick event approaches.

So, delta Time == the time in seconds since the last Tick.

So, if you want to fire, f.e. every second, you can set
A: the Tick interval to 1.0
B: add a delta Time counter and a branch for a second.