ich weiß jetzt nicht genau wie du das meinst entweder so
COMMAND:stats(playerid,params[])
{
new string[256];
format(string,sizeof(string),"[[Account]]\r\n\r\nName: [%s] Bargeld: [%d] Bankkonto [%d] Wanteds: [%i] Verwarnungen: [%d]\r\n\r\n[[Zugehörigkeit]]\r\n\r\nFraktion [%s] Rank: [%s] Job: [%s] Adminlevel: [%d]\r\n\r\n[[Besitz]]\r\n\r\n[Waffeneinheiten]:\r\nHand: [%d] Savebox [%d] ",SpielerName[playerid],GetPlayerMoney(playerid),pInfo[playerid][Bank],pInfo[playerid][Wanteds],pInfo[playerid][Verwarnung],GetFrakName(playerid),
GetRankName(pInfo[playerid][Fraktion],pInfo[playerid][Rank]),GetJobName(playerid),pInfo[playerid][AdminLevel],pInfo[playerid][hGuns],pInfo[playerid][bGuns]);
ShowPlayerDialog(playerid,Stats,DIALOG_STYLE_MSGBOX,"Statistik",string,"Schließen","");
return 1;
}
oder so
COMMAND:stats(playerid,params[])
{
new string[256];
format(string,sizeof(string),"[[Account]]\r\n\r\nName: [%s] Bargeld: [%d] Bankkonto [%d] Wanteds: [%i] Verwarnungen: [%d]\r\n\r\n[[Zugehörigkeit]]\r\n\r\nFraktion [%s] Rank: [%s] Job: [%s] Adminlevel: [%d]\r\n\r\n",SpielerName[playerid],GetPlayerMoney(playerid),pInfo[playerid][Bank],pInfo[playerid][Wanteds],pInfo[playerid][Verwarnung],GetFrakName(playerid),
\GetRankName(pInfo[playerid][Fraktion],pInfo[playerid][Rank]),GetJobName(playerid),pInfo[playerid][AdminLevel]);
fomat(string,sizeof(string),"%s\r\n[[Besitz]]\r\n[Waffeneinheiten]:\r\nHand: [%d] Savebox [%d] ",pInfo[playerid][hGuns],pInfo[playerid][bGuns]);
ShowPlayerDialog(playerid,Stats,DIALOG_STYLE_MSGBOX,"Statistik",string,"Schließen","");
return 1;
}