GetKeyBoundToFunction

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

getKeyBoundToFunction allows retrieval of the first key bound to a function.

Syntax

Click to collapse [-]
Server
string getKeyBoundToFunction( player thePlayer, function theFunction )

Required Arguments

  • thePlayer: The player you are checking the function bound to a key
  • theFunction: The function in which you would like to check the bound key

Returns

Returns a string of the first key the function was bound to.

Click to collapse [-]
Client
string getKeyBoundToFunction( function theFunction )

Required Arguments

  • theFunction: The function in which you would like to check the bound key

Returns

Returns a string of the first key the function was bound to.

Example

Click to collapse [-]
Client

/key command gives bounded key to our chat function

function chat ()
  outputChatBox("Test")
end
bindKey("F2","down",chat)

function key()
  local boundKey = getKeyBoundToFunction(chat)
  outputChatBox(boundKey)
end
addCommandHandler("key",key)

This example written by Samurai

See Also