28.12.2011, 23:21
pawn Код:
CMD:stats(playerid, params[])
{
if(GetPVarInt(playerid, "Logged") == 1)
{
new kills = GetPVarInt(playerid, "Kills"), deaths = GetPVarInt(playerid, "Deaths");
format(string, sizeof string, "{00CFCF}Username: {FFFFFF}%s\n\n{00CFCF}Money: {FFFFFF}%i\n{00CFCF}Score: {FFFFFF}%i\n\n{00CFCF}Kills: {FFFFFF}%i\n{00CFCF}Deaths: {FFFFFF}%i\n{00CFCF}Ratio: {FFFFFF}%02f",
GetName(playerid), GetPlayerMoney(playerid), GetPlayerScore(playerid), GetPVarInt(playerid, "Kills"), GetPVarInt(playerid, "Deaths"), ((kills) / (deaths)));
ShowPlayerDialog(playerid, 3, DIALOG_STYLE_MSGBOX, "Statistics", string, "Send", "Close");
}
return 1;
}
If i comment out either the ratio or string it will work.