This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Backplague's profile picture

[Lua][Question] Blocking Ctrl+T

Started by Backplague, 20 June 2012 - 10:14 PM
Backplague #1
Posted 21 June 2012 - 12:14 AM
I know it can be done with os.pullEventRaw(), but how?
Zalerinian #2
Posted 21 June 2012 - 12:18 AM
oldpullEvent = os.pullEvent
os.pullEvent = os.pullEventRaw

Your code shall be place in this space here.

os.pullEvent = oldpullEvent
Backplague #3
Posted 21 June 2012 - 12:40 AM
Thanks!