UnbindKey

From Multi Theft Auto: Wiki
Revision as of 21:54, 27 June 2006 by MrJax (talk | contribs)
Jump to navigation Jump to search

Removes an existing key bind from the specified player. Note: will remove all the binds from the current key if no command is specified

Syntax

unbindKey ( player thePlayer, string key, [ string keyState, string command ] ) 

Required Arguments

  • thePlayer: The player you wish to unbind the key of.
  • key: The key you wish to unbind.

Optional Arguments

  • keyState: A string containing the word "up" or "down" determining which bind you wish to remove.
  • command: The command you wish to unbind.

Example

This function will bind a player's 'F1' key-down to a command, then remove it after it's been used.

addCommandHandler ( "bindmekeysplz", "bindtehkeys" )
function bindtehkeys ( )
  bindKey ( source, "F1", "down", "moo" ) -- bind the player's F1 key
end

addCommandHandler ( "moo", "moo" )
function moo ( )
  outputChatBox ( getClientName ( source ).." says Mooooooo!" )
  unbindKey ( source, "F1", "down", "moo" ) -- this function will no longer be triggered by the player, after removing the bind.
end

See Also