Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- @Author: [iPs]SuYaNw
- @Funct : Proiba nicks indesejáveis no servidor.
- */
- #include a_samp
- new
- Clans[][]
- {
- "[AVA]",
- "[FeK]",
- "[Fusion]",
- "_"
- }
- public OnPlayerConnect(playerid)
- {
- new pName[24];
- GetPlayerName(playerid, pName, 24);
- for(new i; i < sizeof(Clans); ++i)
- {
- if(!strcmp(Nome, Clans[i], true))
- {
- SendClientMessage(playerid, -1,"Seu Nick está proibido aqui, ou você se tem algum nome proibido");
- Kick(playerid);
- }
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment