This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
case "USER", "ADMIN", "HALF-ADMIN", "MODERATOR":
if ( IsPlayerGroup_Mod("ramandu", "MODERATOR") ) { printf("yes, ramandu's group MODERATOR is found and also has access to user, admin, half-admin commands"); }
stock
IsPlayerGroup_Mod(Player[], Primary_Group[])
{
switch (Primary_Group[0])
{
// case 'a', 'b', 'c', 'd' : // -> works
// case '1', '2', '3', '4': // -> This works too
case 'USER', 'ADMIN', 'HALF-ADMIN', 'MODERATOR': // -> but this dosnt work, why ?
{
return 1;
}
}
return 0;
}