MonK
Aprenda á colocar Nicks proibidos no seu server


Primeiramente, cole isto no topo do GM:



//O Nome dos nicks proibidos, eu já coloquei alguns, edite á vontade

new NicksProibidos[][MAX_PLAYER_NAME] ={

"[ELETROSAMP","[YaploRock","[Stakline","Eletrosamp owna",

"www.eletrosamp.com.br","Tutorial","ByYaplo","com5","com6",

"Visite www.eletrosamp.combr"

};






Tambem no topo cole isto: 

new Security = 0;

No OnPlayerConnect cole isto: 

  new fulano_entrou[256];

 GetPlayerName(playerid,fulano_entrou,256);

 if(Security != 0)

 {

   SendClientMessage(playerid, COLOR_YELLOW, "Você deve cumprir as regras");

   Kick(playerid);

   return 1;

 }

 for(new i; i {

  if(strcmp(NicksProibidos[i],fulano_entrou,true)==0)

  {

   SendClientMessage(playerid,COLOR_YELLOW,"Você foi banido  [Visite www.eletrosamp.com.br]");

   Ban(playerid);

  }

 }

E é só, esse tutorial eu aprendi com outro tutorial '-'