eu sei amigo, ta vendo meu sv online abaixo ? esse sistema de tag de procurado ta ativado mas a tag nгo vai pra cabeзa do player
, nгo sei se й pq eu jб tenho sistema de vбrios tipos de tags em cima do player e a de procurado nгo aparece por esse motivo
Code:
CMD:titulos(playerid)
{
new string[128];
new text[13][7];
MEGAString[0]=EOS;
for(new i = 0; i < MAX_TITULOS; i++)
{
if(Titulos[playerid][i] > 0)
{
strmid(text[i], "FFFF00", 0, strlen("FFFF00"), 7);
}
if(Titulos[playerid][i] == 0)
{
strmid(text[i], "FFFFFF", 0, strlen("FFFFFF"), 7);
}
}
strcat(MEGAString, "Titulo\tRequisitos\n");
format(string, sizeof string, "{%s}(Scripter)\tRequisitos: Level 5000 de Admin\n",text[0]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Mapper)\tRequisitos: Level 3001+ de Admin\n",text[1]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Cargo admin)\tRequisitos: Level 1+ de Admin\n",text[2]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Familia da Org)\tRequisitos: Ser de Alguma Organizaзгo\n",text[3]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Matador)\tMatar Mais de 100 players\n",text[4]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Noob)\tNenhum\n",text[5]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Experiente)\tLevel 30+\n",text[6]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(VIP)\tSer VIP\n",text[7]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(SUPER VIP)\tSer Super VIP\n",text[8]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Socio)\tSer socio\n",text[9]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Lнder)\tSer Lнder\n",text[10]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Novato)\tLvl 2+\n",text[11]);
strcat(MEGAString, string);
format(string, sizeof string, "{%s}(Helper)\tSer Helper\n",text[12]);
strcat(MEGAString, string);
ShowPlayerDialog(playerid, menutitulo, 5, "Tнtulos",MEGAString,"Selecionar", "Sair");
return 1;
}