Keys::isUp: Difference between revisions
m (→Return Value) |
mNo edit summary |
||
| Line 5: | Line 5: | ||
===Required Argument=== | ===Required Argument=== | ||
* ''' | * '''keycode''' - hexadecimal code of [https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731 key]. | ||
===Return Value=== | ===Return Value=== | ||
| Line 11: | Line 11: | ||
==Example== | ==Example== | ||
An interval that runs every | An interval that runs every 100ms and outputs the state of the key bound. (F2) | ||
{{ClientsideCode| | {{ClientsideCode| | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
setInterval(() => { | setInterval(() => { | ||
mp.keys.isUp(0x71) | |||
? mp.gui.chat.push("false") | |||
: mp.gui.chat.push("true"); | |||
}, 100); | |||
}, | |||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} | ||
Latest revision as of 12:55, 15 January 2025
Function to check if specific key is released.
Syntax
mp.keys.isUp(keyCode);
Required Argument
- keycode - hexadecimal code of key.
Return Value
- Boolean -
trueif the key specified is released, otherwisefalse.
Example
An interval that runs every 100ms and outputs the state of the key bound. (F2)
Client-Side
setInterval(() => {
mp.keys.isUp(0x71)
? mp.gui.chat.push("false")
: mp.gui.chat.push("true");
}, 100);