12.04.2017, 21:58
Sorry for my newbieness, but this doesnt skip to next line, any reason why?
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;
}