wohin muss ich das einfügen
pawn-queltext
if(strcmp(cmd, "/stats", true) == 0)
{
new Float:health,Float:armor;
GetPlayerHealth(playerid,health);
GetPlayerArmour(playerid,armor);
GetPlayerName(playerid, giveplayername, sizeof(giveplayername));
format(string, sizeof(string), "Stats of %s: Health: '%.2f' - Cash:
'$%d' - Warnings: '%d' - Armor: '%.2f'",giveplayername,
health,GetPlayerMoney(playerid),AccountInfo[playerid][Warns],armor);
SendClientMessage(playerid, LIGHTBLUE,string);
return 1;
}