Timer vs Device / Condition Last True

That will always be true … because you are comparing the same EVENT
If you want to know if the same event happens in a short time you use the multi-click operator.

KODI_VideoStopped @ 2 < 30

Which will be true if it was stopped a second time within 30 seconds of the first.

(!KODI_VideoStopped; KODI_VideoStopped < 30)

That will be true if the Video Stopped within 30 seconds of being started (NOT Kodi_VideoStopped)

OK, this must be simple since I can’t figure out, and reading the forums and PLEG Basic doc is not selling it out for me… can you unleash the secret on me?