24.08.2013, 01:26
cara eu n testei, com essa sua variavel n sei fiz aqui com a variavel do meu gm, compilou mas n testei adapta ae
pawn Код:
CMD:membrosprof(playerid)
{
new count = 0, msg[128], nomep[MAX_PLAYER_NAME], nomel[MAX_PLAYER_NAME];
GetPlayerName(playerid, nomep, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, nomep);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
format(file2, sizeof(file2), PASTA_CONTAS, nomel);
GetPlayerName(i, nomel, MAX_PLAYER_NAME);
if(DOF2_GetInt(file, "Profissao") == DOF2_GetInt(file2, "Profissao"))
{
format(msg, sizeof(msg), "%s", nomel);
count++;
}
}
}
if(count == 0)
{
SendClientMessage(playerid, -1, "Nenhum membro estб online no momento.");
}
else
{
SendClientMessage(playerid, -1, msg);
}
return 1;
}