You can replace prefix
admin_ with
amx_ and then execute it from the clients console with it arguments.
PHP Code:
public CommandKick( id, level, cid )
{
if ( !cmd_access( id, level, cid, 1 ) )
return PLUGIN_HANDLED
new szCommand[ 16 ]
read_argv( 0, szCommand, sizeof ( szCommand ) - 1 )
if ( equali( szCommand, "admin_", 6 ) )
replace_all( szCommand, sizeof ( szCommand ) - 1, "admin_", "amx_" )
client_cmd( id, "%s", szCommand )
return PLUGIN_HANDLED
}