how can I register a clcmd and get when it is pressed AND when it is released? I can make people bind the comand, but how will i get when they press AND release that bound key?
Code:
register_clcmd("comand", "handle");
public handle(id) {
//this is when pressed
}
//how do i detect release?
__________________