mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-12-02 04:18:06 +00:00
286 B
286 B
module: [kind=event] redstone
The @{event!redstone} event is fired whenever any redstone inputs on the computer change.
Example
Prints a message when a redstone input changes:
while true do
os.pullEvent("redstone")
print("A redstone input has changed!")
end