06.02.2017, 00:57
It's really confusing when i read your code 
But i clean up your code & use an dialog for your stats here :
I hope this will be helpful

But i clean up your code & use an dialog for your stats here :
PHP код:
#define DIALOG_STATS 9999
forward ShowPlayerStats(playerid, targetid);
public ShowStats(playerid, giveplayerid)
{
new string[512], tmp[512], h, m, s;
format(tmp, sizeof(tmp), "|- %s's Statistics -|\n\n", GetPlayerNameEx(giveplayerid));
strcat(string, tmp);
format(tmp, sizeof(tmp), "Kills: [%d]\nDeaths: [%d]\nRatio: [%0.2f]\nMoney: [$%d]\nTime: [%d] hrs [%d] mins [%d] secs", AccInfo[player1][Kills], AccInfo[player1][Deaths], Float:AccInfo[player1][Kills]/Float:pDeaths,GetPlayerMoney(player1), h, m, s);
strcat(string, tmp);
ShowPlayerDialog(playerid, DIALOG_STATS, DIALOG_STYLE_MSGBOX, "- Stats -", string, "OK", "");
return 1;
}
dcmd_stats(playerid, params[])
{
new string[128];
new player1;
if(!strlen(params)) player1 = playerid;
else player1 = strval(params);
if(IsPlayerConnected(player1))
{
if(AccInfo[player1][Deaths] == 0)
{
AccInfo[player1][Deaths]++;
}
else
{
ShowPlayerStats(playerid, player1);
}
}
else
{
SendClientMessage(playerid, COLOR_MESSAGE_RED, "* Sorry, Player Not Connected!");
}
return 1;
}

