Thanks for your response.
About question 2 :
IE :
PHP Code:
public plugin_init()
{
// . . .
register_clcmd("awp", "cmd_awp")
// . . .
}
// return PLUGIN_HANDLED can be used to block the command
public cmd_awp()
{
my_custom_function()
return PLUGIN_CONTINUE
}
my_custom_function() // or public my_custom_function()
{
return PLUGIN_HANDLED
}
Does my_cunstom_function() return affect cmd_awp() return value ?