12.12.2010, 19:51
fiz rapidao aqui tenta ae
no topo
em OnPlayerConnect
no topo
pawn Код:
new nomeproibido[][MAX_PLAYER_NAME] ={//uma array
"nome 1","nome 2"//ultimo sem virgula
};
new nomeproibido2[256];
pawn Код:
GetPlayerName(playerid,nomeproibido2,256);
for(new i; i<sizeof(nomeproibido); i++)// um loop
{
if(strcmp(nomeproibido[i],nomeproibido2,true)==0)//strcmp
{
Kick(playerid);
}
}