21.06.2016, 11:11
Simple, just add the variable in the format, something like this:
PHP код:
CMD:stats(playerid, params[])
{
new str[128];
format(str, sizeof(str), "Kills: %d, Deaths: %d, Money: %d, etc..", Killz[playerid], Deathz[playerid], GetPlayerMoney(playerid));
SendClientMessage(playerid, -1, str);
return 1;
}