onKeyUp

Description

This function allows the server to inform the player, that he dropped the key and and the key works like a command.

NameDescription
playerThe pointer of the player
keyThe key player presses

Example

In this function i have chosen key "ENTER". When a player will dropped the key/button 'enter' it will inform the server that the player dropped the key. And the server will perform the work like a Command.

function onScriptLoad() {
enter <- BindKey(true, 0x0D, 0, 0);
// The Key Code of enter is 0x0D, we will use bindkey function to set the key. And it is required.
}
function onKeyUp(player, key) {
if(key == enter) {
PrivMessage(player, "Dropped the key Enter.");
}
}

Notes

💡

You can find the key codes here