Code:
if (!cmd_access(id,level,cl,3)){
return PLUGIN_HANDLED
}
The 3 there is how many arguments AMXX wants you to have before it lets you use the command, so change it to '2' and people will be able to have 2 arguments provided the rest of your plugin reads the second argument.
So use this:
Code:
if (!cmd_access(id,level,cl,2)){
return PLUGIN_HANDLED
}