30.05.2013, 09:36
I don't have any errors/warnings, I have some problem, I changed my name to [KZ] clan tag, but when i quit and i join I am kicked.
please guide me to fix the problem, thanks in advace.
pawn Код:
new stringtag[128]; //if the name contains [KZ] tag...
if (PlayerInfo[playerid][pTag] == 0)
{
if(strfind(Name(playerid), "[KZ]", true) != -1)
{
{
format(stringtag, sizeof(stringtag), "%s has been kicked from the Server [Reason: Unauthorized Tag]", Name(playerid));
SendClientMessageToAll(C_LBLUE, stringtag);
DelayKick(playerid, 100);
}
}
}