getBoundKeys | Multi Theft Auto: Wiki Skip to content

getBoundKeys

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


Returns a list of key names that are bound to the specified game control or console command.

Syntax

getBoundKeys ( )

Code Examples

client

This code adds a command handler with which you can check out the keybinds for any game control. As an example, typing "/keys forwards" would list all the keys which you can press to make the player walk forward.

function keysCommand ( command, controlName )
if not controlName then -- make sure they specified a control name
outputChatBox ( "No control name specified", 255, 0, 0 )
return
end
local keys = getBoundKeys ( controlName ) -- get the keys bound to this control
if not keys then -- make sure the control name is valid and any keys are bound to it
outputChatBox ( "No keys bound to " .. controlName, 255, 0, 0 )
return
end
outputChatBox ( "Keys bound to " .. controlName .. ":", 0, 255, 0 )
for keyName, state in pairs(keys) do
outputChatBox ( keyName, 0, 255, 0 )
end
end
addCommandHandler ( "keys", keysCommand )