30.12.2013, 17:31
You need to set a timer for a kick.
For an example -
EDIT: Ah, SilentSoul was faster
For an example -
pawn Код:
forward KickTimer(playerid);
public KickTimer(playerid)
{
Kick(playerid);
return 1;
}
pawn Код:
//command kick
SetTimerEx("KickTimer", 1000, false, "i", id); //1 second, When the 1 second passes, the id(target) gets kicked, seeing the messages
