08.05.2013, 19:46
You can't give format in SendClientMessage.It doesn't accept the specifiers.So you must use format(string,length,"format",....); then call the SendClientMessage.
https://sampwiki.blast.hk/wiki/Format
And the next issues is all client message will not be shown just before Kick();
So you must use a timer to Kick the player.
https://sampwiki.blast.hk/wiki/Format
And the next issues is all client message will not be shown just before Kick();
So you must use a timer to Kick the player.
Код:
SetTimerEx("KickPlayer",1000,0,"i",playerid); forward KickPlayer(playerid); public KickPlayer(playerid) { Kick(playreid); }