22.08.2012, 17:34
Try it now
pawn Код:
enum fInfo
{
Furnitures,
Furniture[100],
FurnitureName[100][MAX_PLAYER_NAME] // line 697
} // line 698
new fur[MAX_PLAYERS][fInfo];
new string[256];
if(strcmp(cmd, "/command", true) == 0)
{
new s[20][MAX_PLAYER_NAME];
for(new f = 0; f < 20; f++)
{
if(fur[playerid][Furniture][f] == 0) { format(s[f],sizeof(s[f]),"Free slot!");
else { format(s[f],sizeof(s[f]),"%s",fur[playerid][FurnitureName][f]);
strcat(string, s[f], sizeof(s[f]));
}
ShowPlayerDialog(playerid,28,DIALOG_STYLE_LIST,"Furnitures:",string,"Select","Exit");
return 1;
}