14.12.2013, 13:39
You need to set a timer before kicking,as Kick command has more priority than others,so it will ignore a message if you have it before the Kick();
For example
For example
pawn Код:
forward KickMsg(playerid);
public KickMsg(playerid)
{
Kick(playerid);
return 1;
}
//THen set a timer after sending a msg
//Sending some msg here when kicking
SetTimerEx("KickMsg", 1000, false, "i", playerid);//kicking him after the msg- 1 second delay to show the msg

