Need Some Help with /kick
#5

pawn Код:
if(strcmp("/kick", cmd, true) == 0)
    {
        if(!IsPlayerAdmin(playerid))
        {
            SendClientMessage(playerid,ERROR,"ERROR: You are not an admin!");
            return 1;
        }
        tmp = strtok(cmdtext,idx);
        if(!strlen(tmp) || strlen(tmp) > 5)
        {
            return SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"USAGE: /kick [id] [reason]");
        }
        new id = strval(tmp);
        if(!IsPlayerConnected(id))
        {
            SendClientMessage(playerid,ERROR,"ERROR: Invalid Player ID");
            return 1;
        }
        GetPlayerName(id,iName,sizeof(iName));
        GetPlayerName(playerid,pName,sizeof(pName));
        gMessage = strrest(cmdtext,idx);
        if(!strlen(gMessage))
        {
            gMessage = "No Reason Specified";
        }
        format(Message,sizeof(Message),"[INFO] %s [ID:%d] has kicked %s [ID:%d] for: %s",pName,playerid,iName,id,gMessage);
        SendClientMessageToAll(INFO,Message);
        Kick(id);
        return 1;
    }
Reply


Messages In This Thread
Need Some Help with /kick - by Tigerbeast11 - 04.08.2011, 11:11
Re: Need Some Help with /kick - by [MG]Dimi - 04.08.2011, 11:20
Re: Need Some Help with /kick - by Famalamalam - 04.08.2011, 11:21
Re: Need Some Help with /kick - by Tigerbeast11 - 04.08.2011, 11:22
Re: Need Some Help with /kick - by MadeMan - 04.08.2011, 11:24
Re: Need Some Help with /kick - by Tigerbeast11 - 04.08.2011, 11:25
AW: Need Some Help with /kick - by samtey - 04.08.2011, 11:26
Re: Need Some Help with /kick - by Tigerbeast11 - 04.08.2011, 11:27
Re: Need Some Help with /kick - by Wesley221 - 04.08.2011, 11:27
Re: AW: Need Some Help with /kick - by Tigerbeast11 - 04.08.2011, 11:41

Forum Jump:


Users browsing this thread: 1 Guest(s)