Bei /stats passiert nichts ;D woran könnte das liegen ?
ocmd:stats(playerid,params[])
{
new string[200];
new kills,deaths,Float:ratio;
kills = GetPVarInt(playerid,"Kills");
deaths = GetPVarInt(playerid,"Tode");
ratio = (kills/deaths);
SendClientMessage(playerid,0x6FABFFFF,"(______________STATS_____________)");
format(string,sizeof(string),"Kills: %i Deaths: %i Ratio: %f",GetPVarInt(playerid,"Kills"),GetPVarInt(playerid,"Tode"),ratio);
SendClientMessage(playerid,BLAU,string);
return 1;
}