06.12.2014, 09:20
PHP код:
new sstr1[50];
new sstr2[50];
new sstr3[50];
new sstr4[50];
new str[350]
format(sstr1, sizeof(sstr1), "Money %d\n", GetPlayerCash(playerid));
format(sstr2, sizeof(sstr2), "Credits %d", pInfo[playerid][Credits]);
format(sstr3, sizeof(sstr3), "Deaths %d\n", pInfo[playerid][Deaths]);
format(sstr4, sizeof(sstr4), "Kills %d\n", pInfo[playerid][Kills]);
strcat(str, sstr1);
strcat(str, sstr2);
strcat(str, sstr3);
strcat(str, sstr4);
SPD(playerid, stats, DIALOG_STYLE_MSGBOX, "Stats", str , "Close","");