18.06.2015, 16:55
i have a problem with this command
it's show me unknow command
plz help
pawn Код:
CMD:members(playerid, params[])
{
if(PlayerData[playerid][Group] >= 0)
{
new string[1024];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(PlayerData[i][Group] == PlayerData[playerid][Group])
{
format(string, sizeof(string), "%s\n%s (%s)", string, GetPlayerNameEx(i), GetPlayerGroupRank(i));
}
}
}
ShowPlayerDialog(playerid, 9999, DIALOG_STYLE_LIST, "Member(s) online", string, "OK", "");
}
else return SendClientMessage(playerid, COLOR_WHITE, "You are not in a faction.");
return 1;
}
plz help