This repository has been archived on 2025-06-08. You can view files and clone it, but cannot push or open issues or pull requests.

20 lines
294 B
Lua

local stop_countdown = true
function onCreatePost()
if stop_countdown == true then
stop_countdown = false
playSound("traffic", 0.5)
return Function_Stop
end
return Function_Continue
end
-- crash prevention
function onUpdate() end
function onUpdatePost() end