#include <amxmodx> public plugin_int() { //my code register_clcmd("command", "myFunction", ADMIN_LEVEL, "Show something") } public myFunction(id, level, cid) { if (!cmd_access(id, level, cid, "I don't know how to set this parameter")) { return PLUGIN_HANDLED } //my code }