1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-12-02 04:18:06 +00:00
Files
CC-Tweaked/doc/events/redstone.md
Toad-Dev 43101773bb Revert "Remove CC: Tweaked doc files."
Never mind, we needed them for linting the lua doc :)
2022-01-04 18:08:40 -08:00

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