I'ved repost here b-cause the last location was incorrect

now, I can't make a command to be done only by an admin, I have to add a !command_acces or something like that but it gives me the ability to insert parametters and I don't need that, just the plain command only be used by the specified acces leve, what I must add ?
here's the code:
Code:
plugin int blabla
register_concmd("amx_clear","amx_clear",ADMIN_ADMIN)
}
.........
public amx_clear(id, level) {
client_cmd(id, "_clear")
return PLUGIN_HANDLED
}
the _clear command it's set somewhere else..... or btw, instead of the client_cmd I'd could just place the command that's set in statsme... it makes 5 chat lines and the last line says the player name that triggered the command.... I would read the manual on wikipedia but I don't understand a thing
__________________