26.05.2020, 09:48
I am not sure you can. Try like this:
PHP Code:
if(channel == g_Discord_Admin_CMD)
{
if(!strcmp(command, "!mycommand", true))
{
if(role == g_Role_Level_1 || role == g_Role_Level_2 || role == g_Role_Level_3 || role == g_Role_Level_4)
{
//My action
}
else return DCC_SendChannelMessage(g_Discord_Admin_CMD, "```ERROR: You're not an admin!```");
}
}