2021-01-19 09:20:52 +00:00
|
|
|
---
|
|
|
|
module: [kind=event] timer
|
|
|
|
see: os.startTimer To start a timer.
|
|
|
|
---
|
|
|
|
|
2023-03-15 21:52:13 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: 2021 The CC: Tweaked Developers
|
|
|
|
|
2023-03-28 09:23:28 +00:00
|
|
|
SPDX-License-Identifier: MPL-2.0
|
2023-03-15 21:52:13 +00:00
|
|
|
-->
|
|
|
|
|
2023-08-24 09:48:30 +00:00
|
|
|
The [`timer`] event is fired when a timer started with [`os.startTimer`] completes.
|
2021-01-19 09:20:52 +00:00
|
|
|
|
|
|
|
## Return Values
|
2023-08-24 09:48:30 +00:00
|
|
|
1. [`string`]: The event name.
|
|
|
|
2. [`number`]: The ID of the timer that finished.
|
2021-01-19 09:20:52 +00:00
|
|
|
|
|
|
|
## Example
|
2023-01-16 22:53:58 +00:00
|
|
|
Start and wait for a timer to finish.
|
2021-01-19 09:20:52 +00:00
|
|
|
```lua
|
2023-01-16 22:53:58 +00:00
|
|
|
local timer_id = os.startTimer(2)
|
2021-01-19 09:20:52 +00:00
|
|
|
local event, id
|
|
|
|
repeat
|
|
|
|
event, id = os.pullEvent("timer")
|
2023-01-16 22:53:58 +00:00
|
|
|
until id == timer_id
|
2021-01-19 09:20:52 +00:00
|
|
|
print("Timer with ID " .. id .. " was fired")
|
|
|
|
```
|