22.04.2014, 13:16
Alright so I'm making a description feature for my roleplay server, and when I enter a new description on one feature, it appears on the second one too..
pawn Код:
CMD:describe(playerid, params[])
{
new string[128];
format(string, sizeof(string), "{F9FFB8}Characters Head\n\
{BDBDBD}%s (Click to edit)\n\
{F9FFB8}Characters Arms\n\
{BDBDBD}%s (Click to edit)",
PlayerInfo[playerid][pHeadDesc], PlayerInfo[playerid][pArmDesc]);
ShowPlayerDialog(playerid, DIALOG_DESCRIPTION, DIALOG_STYLE_LIST, "IRG:RP - Character Descriptions", string, "Edit", "Exit");
return 1;
}