GetFunctionsBoundToKey: Difference between revisions
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...) |
mNo edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server function}} | {{Server client function}} | ||
Gets the functions bound to a key. To bind a function to a key use the [[bindKey]] function | Gets the functions bound to a key. To bind a function to a key use the [[bindKey]] function | ||
Revision as of 15:10, 20 June 2010
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