12.04.2017, 21:59
Because you use /n instead of \n
Try this:
Try this:
PHP код:
CMD:stats(playerid, params[])
{
new string[220], tempString[50];
format(tempString, sizeof(tempString), "{FFFFFF}Cash: {FFFF00}$%d \n", GetPlayerMoney(playerid));
strcat(string, tempString);
format(tempString, sizeof(tempString), "{FFFFFF}Admin Level: {FFFF00}%i \n", PlayerInfo[playerid][pAdmin]);
strcat(string, tempString);
format(tempString, sizeof(tempString), "{FFFFFF}Kills: {FFFF00}%i \n", PlayerInfo[playerid][pKills]);
strcat(string, tempString);
format(tempString, sizeof(tempString), "{FFFFFF}Deaths: {FFFF00}%i \n", PlayerInfo[playerid][pDeaths]);
strcat(string, tempString);
format(tempString, sizeof(tempString), "{FFFFFF}Score: {FFFF00}%i", GetPlayerScore(playerid));
strcat(string, tempString);
ShowPlayerDialog(playerid, DIALOG_STATS, DIALOG_STYLE_MSGBOX, "Stats", string, "Ok", "");
return 1;
}