22.03.2014, 19:31
(
Последний раз редактировалось iFarbod; 22.03.2014 в 19:31.
Причина: kick
)
awesome +repped
you can also use mine code for kicking / banning
you can also use mine code for kicking / banning
pawn Код:
stock Wait(time)
{
new stamp = tickcount();
while (tickcount() - stamp < time)
{
}
return 1;
}
pawn Код:
public OnPlayerDoSomething(playerid, action)
{
new str[256];
Wait(5000);
format(str, sizeof(str), "u got kicked for the following reason : %d", action);
SendClientMessage(playerid, COLOR_DANGER, str);
Kick(playerid);
}

