Posted 14 June 2014 - 05:26 AM
There is no key up event right? So, it's not possible to do things like ctrl + x? If so, it really should be added. Seriously.
local event = { os.pullEvent( "key" ) }
if event[2] == control then --#insert key code for control
local second = { os.pullEvent( "key" ) }
if not os.pullEvent( 'char', 1 ) then
--#control combination pressed
else
--#not control combo
end
else
--#not control
end