11.12.2012, 18:58
Instead of use Kick:
SetTimerEx("KickEx", 500 (500 ms should be enough, increase if not), false, "i", playerid);
forward KickEx(playerid);
public KickEx(playerid)
{
Kick(playerid);
return 0;
}
As i already said, use of Kick in OnPlayerConnect can cause this problem
SetTimerEx("KickEx", 500 (500 ms should be enough, increase if not), false, "i", playerid);
forward KickEx(playerid);
public KickEx(playerid)
{
Kick(playerid);
return 0;
}
As i already said, use of Kick in OnPlayerConnect can cause this problem