Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* [LC-GMX] GMX Automatico
- Feito por Lucas Carneiro™
- Não retirar os creditos por gentileza !
- */
- #include <a_samp>
- #include <zcmd>
- #define TEMPO_GMX 43200000 // Defina para o tempo que desejar !
- #define COR_VERMELHO 0xFF0000AA
- new Tempo;
- public OnFilterScriptInit()
- {
- printf("|~|~|~|~|~|~|~|~|~|~|~|~|~|~|~|");
- printf("FilterScript de GMX Automatico");
- printf("Feito por Lucas Carneiro ");
- printf(" Ligado !");
- printf(" ");
- printf("|~|~|~|~|~|~|~|~|~|~|~|~|~|~|~|");
- Tempo = SetTimer("GMXAutomatico",TEMPO_GMX,false);
- return 1;
- }
- public OnFilterScriptExit()
- {
- KillTimer(Tempo);
- printf("FilterScript de GMX Automatico");
- printf("Feito por Lucas Carneiro ");
- printf(" Desligado !");
- return 1;
- }
- forward GMXAutomatico(playerid)
- public GMXAutomatico(playerid)
- {
- GameTextForAll("~b~GMX~n~~w~Automatico", 5000, 1);
- SendClientMessageToAll(COR_VERMELHO, "[LC-GMX] GMX Automático sendo efetuado ! Aguarde para logar !");
- printf("[LC-GMX] GMX Automático efetuado !");
- SendRconCommand("gmx");
- return 1;
- }
- forward LimparChatAll(linhas);
- public LimparChatAll(linhas)
- {
- for(new i=0; i<linhas; i++)
- {
- SendClientMessageToAll(-1, " ");
- }
- return 1;
- }
- CMD:creditoslcgmx(playerid, params[])
- {
- SendClientMessage(playerid, COR_VERMELHO, "[LC-GMX] Sistema de GMX Automático");
- SendClientMessage(playerid, COR_VERMELHO, "Criado por Lucas Carneiro™ !");
- return 1;
- }
- // Fim...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement