Hey ich hab nen /kill befehl aber was kommt ist das
/edit
Wo steht Du hast gekillt das ist falsch da müsste der Name der pID sein .
ocmd:kill(playerid,params[])
{
new pID,reason,string[128];
if(!IstSpielerAdmin(playerid,1)) return ErrorA
if(!IsPlayerConnected(pID)) return ErrorC
if(sscanf(params,"us",pID,reason)) return SCM(playerid,Blau,"Benutze:/kill [ID/NAME] [GRUND]");
SetPlayerHealth(pID,0);
format(string,sizeof(string),"Admin %s hat dich %s aus dem Grund (%s) gekillt!",SpielerName(playerid),SpielerName(pID),reason);
SCM(pID,Rot,string);
format(string,sizeof(string),"Du hast %s gekillt aus dem Grund % (Abuse es nicht es wird gelogt)",SpielerName(pID),reason);
SCM(playerid,hblau,string);
return 1;
}