There is anyway to get from user the value of bind?
something like that:
PHP Code:
new bind1[32]
get_user_bind("shift",bind1,31)
console_print(id,"Your bind is: %s",bind1)
or something like:
PHP Code:
public plugin_init() {
register_concmd("bind","bind_value",ADMIN_KICK)
}
public bind_value(id) {
new arg1[32],arg2[32]
read_argv(1,arg1,31)
read_argv(2,arg2,31)
console_print(id,"Your KEY is: %s, and your BIND is: %s",arg1,arg2)
return PLUGIN_CONTINUE
}
its possible?
Thanks in advance.