29.05.2013, 11:49
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;
}