Boa noite. quando o player esta com cargo admin somente ele não aparece no chat mais ajudante ou exemplo: fundador.. fica somente [LOCAL]
mas quando o player esta com o cargo YOUTUBER OU TIKTOKER ele aparece no chat [YOUTUBER] [TIKTOKER]
como deixar funcional para os dois casos.. tentei colocar mais um }else{ e não compilo.
	
	
	
	
mas quando o player esta com o cargo YOUTUBER OU TIKTOKER ele aparece no chat [YOUTUBER] [TIKTOKER]
como deixar funcional para os dois casos.. tentei colocar mais um }else{ e não compilo.
Código PHP:
    if(PlayerInfo[playerid][modoon] == false)
    {
        
        switch(PlayerInfo[playerid][Admin])
        {
            
            case 0:format(string,sizeof(string),"{FFFF00}[LOCAL] %s[%d]: {FFFFFF}%s",pName[playerid],playerid,text);
            case 1:format(string,sizeof(string),"%s{FFFFFF}[{DCDCDC}Ajudante{FFFFFF}][%d]: %s",pName[playerid],playerid,text);
            case 2:format(string,sizeof(string),"%s{FFFFFF}[{804000}Moderador{FFFFFF}][%d]: %s",pName[playerid],playerid,text);
            case 3:format(string,sizeof(string),"%s{FFFFFF}[{0080C0}Coordenador{FFFFFF}][%d]: %s",pName[playerid],playerid,text);
            case 4:format(string,sizeof(string),"%s{FFFFFF}[{800080}Gerente{FFFFFF}][%d]: %s",pName[playerid],playerid,text);
            case 5:format(string,sizeof(string),"%s{FFFFFF}[{008000}Fundador{FFFFFF}][%d]: %s",pName[playerid],playerid,text);
        }
        if(PlayerInfo[playerid][modoon2] == false)
        {
            
            switch(PlayerInfo[playerid][CargoZone])
            {
                
                case 0:format(string,sizeof(string),"{FFFF00}[LOCAL] %s[%d]: {FFFFFF}%s",pName[playerid],playerid,text);
                case 1:format(string,sizeof(string),"%s{FFFFFF}[{FF0000}Youtuber{FFFFFF}][%d]: %s",pName[playerid],playerid,text);
                case 2:format(string,sizeof(string),"%s{FFFFFF}[{8A2BE2}Tiktoker{FFFFFF}][%d]: %s",pName[playerid],playerid,text);
            }
        }
    }else{
        format(string,sizeof(string),"[LOCAL] %s[%d]: {FFFFFF}%s",pName[playerid],playerid,text);
    } 

	   
	
