08.05.2018, 22:03
Quote:
Nгo hб erro algum no cуdigo, tenha em mente que vocк nгo pode ver o CharBubble que estб em vocк.
|
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; }