Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #define FILTERSCRIPT
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("=====================================");
- print("* *");
- print("* *");
- print("*Criado Totalmente Por: Wellington *");
- print("* *");
- print("* *");
- print("=====================================");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- public OnPlayerConnect(playerid)
- {
- return 1;
- }
- //========================COMANDOS AKI==========================================
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- if (strcmp(cmdtext, "/Cornick",true) == 0)
- {
- SendClientMessage(playerid, 0x1E90FFAA ,"============================ CORES ============================");
- SendClientMessage(playerid, 0x00FF7FAA ,"CORES DISPONIVEIS:\n");
- SendClientMessage(playerid, 0xFF0606FF ,">>>>>>>>>>>>{F60000}/Vermelho\n - {21DD00}/Verde\n - {FF6EB4}/Rosa\n - {0000FF}/Azul\n - {FFFFFF}/Branco\n " );
- SendClientMessage(playerid, 0xFF0606FF ,">>>>>>>>>>>>{9400D3}/Roxo\n - {00F5FF}/Turquesa\n - {1E90FF}/Azul C\n - {FFFF00}/Amarelo\n - {000000}/Preto\n");
- SendClientMessage(playerid, 0x0000FFAA ,">>>>>>>>>>>>{00BFFF}/azul f\n - {CD661D}/chocolate\n - {8968CD}/Roxo M\n - {FF1493}/Rosa p\n - {FFA500}/Laranja\n");
- SendClientMessage(playerid, 0x0000FFAA , "Uso Correto do Comando Γ© EX: /azul , /preto , /verde e assim por Diante");
- SendClientMessage(playerid, 0x1E90FFAA ,"============================ CORES ============================");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/azul", true)==0)
- {
- SetPlayerColor(playerid, 0x0000FFAA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Azul - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/preto", true)==0)
- {
- SetPlayerColor(playerid, 0x00000AA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Preto Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/amarelo", true)==0)
- {
- SetPlayerColor(playerid, 0xFFFF00AA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Amarela Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/laranja", true)==0)
- {
- SetPlayerColor(playerid, 0xFFA500AA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Laranja Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/rosa", true)==0)
- {
- SetPlayerColor(playerid, 0xFF6EB4AA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Rosa Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/verde", true)==0)
- {
- SetPlayerColor(playerid, 0x21DD00AA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Verde Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/branco", true)==0)
- {
- SetPlayerColor(playerid, 0xFFFFFFAA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Branco Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/vermelho", true)==0)
- {
- SetPlayerColor(playerid, 0xF60000AA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Vermelho Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/azul c", true)==0)
- {
- SetPlayerColor(playerid, 0x1E90FFAA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Azul Claro Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/roxo", true)==0)
- {
- SetPlayerColor(playerid, 0x9400D3AA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Roxo Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/turquesa", true)==0)
- {
- SetPlayerColor(playerid, 0x00F5FFAA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Turquesa Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/azul f", true)==0)
- {
- SetPlayerColor(playerid, 0x00BFFFAA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Azul Forte Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/chocolate", true)==0)
- {
- SetPlayerColor(playerid, 0xCD661DAA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Chocolate Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/Roxo m", true)==0)
- {
- SetPlayerColor(playerid, 0x8968CDAA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Roxo MΓ©dio Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- if (strcmp(cmdtext, "/rosa p", true)==0)
- {
- SetPlayerColor(playerid, 0xFF1493AA);
- new pname[MAX_PLAYER_NAME];
- new string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "[INFO:] - %s Resolveu Trocar A Cor Do Seu Nome Para Cor Rosa Perfumado Usando - (/Cornick)", pname);
- SendClientMessageToAll( 0x0000FFAA, string);
- SendClientMessage(playerid, 0xFF0606FF , "[INFO:] Cor do Seu Nick Foi Mudada Com Sucesso Comando Criado Por: Wellington");
- return 1;
- }
- //==============================================================================
- return 0;
- }
- //==============================================================================
- #endif
Advertisement
Add Comment
Please, Sign In to add comment