Sending message to all
#1

I don't understand why it's sending the msg to all even it's in SendClientMessageEx format and 'giveplayerid' here's the code

Код:
CMD:kick(playerid, params[])
{
	if(PlayerInfo[playerid][pAdmin] >= 1)
	{
		new string[128], giveplayerid, reason[64];
		if(sscanf(params, "us[64]", giveplayerid, reason)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /kick [playerid/partofname] [reason]");

		if(IsPlayerConnected(giveplayerid))
		{
			if(PlayerInfo[giveplayerid][pAdmin] < PlayerInfo[playerid][pAdmin]) {
				new playerip[32];
				GetPlayerIp(giveplayerid, playerip, sizeof(playerip));
				format(string, sizeof(string), "AdmCmd: %s (IP:%s) was kicked by %s, reason: %s", GetPlayerNameEx(giveplayerid), playerip, GetPlayerNameEx(playerid), reason);
				Log("logs/kick.log", string);
				format(string, sizeof(string), "AdmCmd: %s was kicked by %s, reason: %s", GetPlayerNameEx(giveplayerid), GetPlayerNameEx(playerid), reason);
				SendClientMessageToAllEx(COLOR_LIGHTRED, string);
				/*format(string, sizeof(string), "You have been kicked out by %s, reason: %s. Take a screenshot using F8 if you find this abusive.", GetPlayerNameEx(playerid), reason);
				SendClientMessageEx(giveplayerid, COLOR_LIGHTBLUE, string);*/
				SetTimerEx("DelayedKick", 1000, false, "i", giveplayerid);
			}
			return 1;
		} else SendClientMessage(playerid, COLOR_GRAD1, "Invalid player specified.");
	}

	return 1;
}
Also it's not kicking the player who i want to kick. +1 REP!
Reply


Messages In This Thread
Sending message to all - by ChuckyBabe - 24.04.2015, 00:11
Re: Sending message to all - by ChuckyBabe - 24.04.2015, 00:42
Re: Sending message to all - by justice96 - 24.04.2015, 00:53
Re: Sending message to all - by ChuckyBabe - 24.04.2015, 01:10
Re: Sending message to all - by justice96 - 24.04.2015, 02:04

Forum Jump:


Users browsing this thread: 1 Guest(s)