Need Some Help with /kick
#2

This should be good:
PHP код:
if(!strcmp("/kick"cmdtexttrue))
{
    if(
IsPlayerAdmin(playerid))
    {
        
tmp strtok(cmdtext,idx);
        if(!
strlen(tmp) || strlen(tmp) > 5
        {
            
SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"USAGE: /kick [id] [reason]");
            return 
0;
        }
        new 
id strval(tmp);
        if(!
IsPlayerConnected(id)) 
        {
            
SendClientMessage(playerid,ERROR,"ERROR: Invalid Player ID");
            return 
1;
        }
        if(
strlen(gMessage) == 0)
        {        {
            
GetPlayerName(id,iName,sizeof(iName));
            
GetPlayerName(playerid,pName,sizeof(pName));
                    
format(Message,sizeof(Message),"[INFO] %s [ID:%d] has kicked %s [ID:%d] for: No Reason Specified",pName,playerid,iName,id);
            
SendClientMessageToAll(INFO,Message);
            
Kick(id);
        {
        else if(
strlen(gMessage) > 0)  //Line 160
        
{
            
gMessage strrest(cmdtext,idx);
            
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;
        }
        else
        {
                    
SendClientMessage(playerid,ERROR,"ERROR: You are not an admin!");
            return 
1;
        }
    }
    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)