mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-05 17:46:21 +00:00
52b78f92cd
References are now written using normal links: You now use [`print`] or [print a string][`print`]) instead of @{print} or @{print|print a string}.
584 B
584 B
module: [kind=event] disk_eject
see: disk For the event sent when a disk is inserted.
The [disk_eject
] event is fired when a disk is removed from an adjacent or networked disk drive.
Return Values
- [
string
]: The event name. - [
string
]: The side of the disk drive that had a disk removed.
Example
Prints a message when a disk is removed:
while true do
local event, side = os.pullEvent("disk_eject")
print("Removed a disk on side " .. side)
end