22.03.2015, 16:59
Hey, im trying to create tag for my server and #ONLY_ADMINS can join with it but it let anyone joins, here is the code
that code under onplayerconnect and after logging in
that code under onplayerconnect and after logging in
pawn Код:
if(strfind(name,"[EXP]",true) != -1)
{
if(PlayerInfo[playerid][Level] >= 2)
{
format(string9, sizeof(string9), "%s {%d} has been kicked for having [EXP] clan-tag in their name.", name, playerid);
SendClientMessageToAll(COLOR_ORANGE, string9);
return 1;
}
}