Kick Command
#2

Use that: https://sampwiki.blast.hk/wiki/IsPlayerInRangeOfPoint

pawn Код:
CMD:kick(playerid,params[])
{
    new id,name1[MAX_PLAYER_NAME], reason[35],name2[MAX_PLAYER_NAME], string[128];
    new Float:posx, Float:posy, Float:posz;
    if(PlayerInfo[playerid][pAdmin] < 1) return SCM(playerid, COLOR_GREY,"You are not authorized to use this command");
    if(sscanf(params,"uz",id,reason)) return SCM(playerid, COLOR_WHITE,"USAGE: /kick [playerid/partofname] [reason]");
    if(!IsPlayerConnected(id)) return SCM(playerid, COLOR_GREY,"Invalid player id");
    GetPlayerPos(playerid, posx, posy, posz);
    if(!IsPlayerInRangeOfPoint(id, 5.0, posx, posy, posz) return SCM(playerid, COLOR_GREY, "Player is not in your range.");
    else
    {
        GetPlayerName(playerid,name1,sizeof(name1));
        GetPlayerName(id,name2,sizeof(name2));
        format(string, sizeof(string),"AdmCmd: %s was kicked by %s, reason: %s",name2,name1,reason);
        SendClientMessageToAll(COLOR_LIGHTRED,string);
        Kick(id);
    }
    return 1;
}
Reply


Messages In This Thread
Kick Command - by Dare Devil..... - 29.05.2013, 11:44
Re: Kick Command - by Konewka - 29.05.2013, 11:49

Forum Jump:


Users browsing this thread: 2 Guest(s)