GetFunctionsBoundToKey: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Server function}} Gets the functions bound to a key. To bind a function to a key use the bindKey function ==Syntax== <syntaxhighlight lang="lua"> string getFunctionsBoundToKey ( player th...)
(No difference)

Revision as of 09:46, 26 February 2009

Gets the functions bound to a key. To bind a function to a key use the bindKey function

Syntax

string getFunctionsBoundToKey ( player thePlayer, string theKey )

Required Arguments

  • thePlayer: The player to get the functions from a key.
  • theKey: The key you wish to check the functions from.

Returns

Returns a string of the functions bound on that key.

Example

--Example here

See Also