versuchs mal so! so hab ich es :
if(strcmp("/kick", cmdtext, true, 5) == 0) //normal command - unfortunately, the cellmax is needed
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0xFF0000FF, "Dieser Befehl ist nur für Admins!");
new tmp[128]; //create a tmp, just like strtok
tmp = zcmd(1, cmdtext); //the "1" is the position of the var - see next example
if(strlen(tmp) == 0) return SendClientMessage(playerid, 0xFF0000FF, "Du hast keine ID angegeben!"); //check string length, just like strtok
Kick(strval(tmp)); //kick the value of the tmp string
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0xFFFF00FF, "Dieser Befehl ist nur für Admins!");
return 1;
}
ist aber mit rcon !
hier ohne rcon:
if(strcmp("/kick", cmdtext, true, 5) == 0) //normal command - unfortunately, the cellmax is needed
{
new tmp[128]; //create a tmp, just like strtok
tmp = zcmd(1, cmdtext); //the "1" is the position of the var - see next example
if(strlen(tmp) == 0) return SendClientMessage(playerid, 0xFF0000FF, "Du hast keine ID angegeben!"); //check string length, just like strtok
Kick(strval(tmp)); //kick the value of the tmp string
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0xFFFF00FF, "Dieser Befehl ist nur für Admins!");
return 1;
}