So in this file we have:
Code:
#define ADMIN_MENU (1<<20) /* flag "u" */
#define ADMIN_ADMIN (1<<24) /* flag "y" */
#define ADMIN_USER (1<<25) /* flag "z" */
Shoudn't that be:
Code:
#define ADMIN_MENU (1<<20) /* flag "u" */
#define ADMIN_ADMIN (1<<21) /* flag "y" */
#define ADMIN_USER (1<<22) /* flag "z" */
?
Now if we have some commands in admincmd.amxx with ADMIN_ADMIN access, admins without flag 'y' can use that command -.-