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;
}
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;
}
Use \n to start a new line and \t to tabulate. |