Posted 29 April 2014 - 12:52 PM
Im messing around with Rednet and im wondering if I could make a computer send out a message when it gets Terminated (Holding Ctrl + T for 3 secs) I can't realy find a way
while true do
local event = os.pullEventRaw()
if event == "terminate" then
print("Terminating...")
end
end