IsKeyBound: Difference between revisions
Jump to navigation
Jump to search
(→Example: added) |
mNo edit summary |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Server function}} | {{Server function}} | ||
__NOTOC__ | __NOTOC__ | ||
This function can be used to find out if a key has already been bound. | This function can be used to find out if a key has already been bound. If you do not specify a keyState or handler, any instances of key being bound will cause isKeyBound to return true. | ||
==Syntax== | ==Syntax== | ||
Line 15: | Line 15: | ||
**'''"down":''' when the key is pressed | **'''"down":''' when the key is pressed | ||
*'''handler:''' The function you're checking against | *'''handler:''' The function you're checking against | ||
===Returns=== | |||
Returns ''true'' if the key is bound, ''false'' otherwise. | |||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
This function | -- This function tells everyone in the server if someone has numpad 9 bound! | ||
function onPlayerJoin () | function onPlayerJoin () | ||
if (isKeyBound (source,"num_9")) then -- if num pad 9 is | if (isKeyBound (source,"num_9")) then -- if num pad 9 is bound | ||
outputChatBox (getPlayerName (source) .. " has | outputChatBox (getPlayerName (source) .. " has bound numpad 9!",getRootElement(),255,0,0,false) -- let see everybody that he has binded it | ||
end | end | ||
end | end | ||
Line 30: | Line 31: | ||
==See Also== | ==See Also== | ||
{{Input functions}} | {{Input functions|server}} | ||
Latest revision as of 22:33, 6 September 2024
This function can be used to find out if a key has already been bound. If you do not specify a keyState or handler, any instances of key being bound will cause isKeyBound to return true.
Syntax
bool isKeyBound ( player thePlayer, string key, [ string keyState, function handler ] )
Required Arguments
- thePlayer: The player you're checking.
- key: The key you're checking. See Key names for a list of valid key names.
Optional Arguments
- keyState: Is the state of the key when it calls the function, Can be either:
- "up": when the key is released
- "down": when the key is pressed
- handler: The function you're checking against
Returns
Returns true if the key is bound, false otherwise.
Example
-- This function tells everyone in the server if someone has numpad 9 bound! function onPlayerJoin () if (isKeyBound (source,"num_9")) then -- if num pad 9 is bound outputChatBox (getPlayerName (source) .. " has bound numpad 9!",getRootElement(),255,0,0,false) -- let see everybody that he has binded it end end addEventHandler ("onPlayerJoin",getRootElement(),onPlayerJoin) -- add event.
See Also
- isKeyBound
- Shared
- addCommandHandler
- bindKey
- executeCommandHandler
- getCommandHandlers
- getFunctionsBoundToKey
- getKeyBoundToFunction
- isControlEnabled
- removeCommandHandler
- toggleAllControls
- toggleControl
- unbindKey