Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- forward Anuncios();
- new RAnunciosS[][] =
- {
- "Voce pode ver os creditos deste servidor utilizando /creditos",
- "Encontrou algum hacker em nosso servidor ? Avise aos Admins",
- "Este servidor encontra-se na versão atual SA:MP 0.3.7",
- "Este servidor possui um sistema de Anuncios por skoolz"
- };
- new Text:TAnuncios[3], TPAnuncios;
- public OnFilterScriptInit()
- {
- SetTimer("Anuncios", 60000, true);
- TPAnuncios = 0;
- print("---------------------------------------------");
- print(" @ Sistema de Anúncios - Carregado ! ");
- print(" Criado por: skoolz ");
- print("---------------------------------------------");
- TAnuncios[0] = TextDrawCreate(12.400094, 310.213073, "Anuncios aleatorios feito por: skoolz");
- TextDrawLetterSize(TAnuncios[0], 0.232000, 1.204266);
- TextDrawAlignment(TAnuncios[0], 1);
- TextDrawColor(TAnuncios[0], -1);
- TextDrawSetShadow(TAnuncios[0], 0);
- TextDrawSetOutline(TAnuncios[0], -1);
- TextDrawBackgroundColor(TAnuncios[0], 255);
- TextDrawFont(TAnuncios[0], 1);
- TextDrawSetProportional(TAnuncios[0], 1);
- TextDrawSetShadow(TAnuncios[0], 0);
- TAnuncios[1] = TextDrawCreate(3.599962, 308.720092, "_");
- TextDrawLetterSize(TAnuncios[1], 0.488800, 1.600000);
- TextDrawTextSize(TAnuncios[1], 246.200012, 0.000000);
- TextDrawAlignment(TAnuncios[1], 1);
- TextDrawColor(TAnuncios[1], -1);
- TextDrawUseBox(TAnuncios[1], 1);
- TextDrawBoxColor(TAnuncios[1], 88);
- TextDrawSetShadow(TAnuncios[1], 0);
- TextDrawSetOutline(TAnuncios[1], 0);
- TextDrawBackgroundColor(TAnuncios[1], 255);
- TextDrawFont(TAnuncios[1], 1);
- TextDrawSetProportional(TAnuncios[1], 1);
- TextDrawSetShadow(TAnuncios[1], 0);
- TAnuncios[2] = TextDrawCreate(5.999997, 307.973449, "!");
- TextDrawLetterSize(TAnuncios[2], 0.400000, 1.600000);
- TextDrawAlignment(TAnuncios[2], 1);
- TextDrawColor(TAnuncios[2], -16776961);
- TextDrawSetShadow(TAnuncios[2], 0);
- TextDrawSetOutline(TAnuncios[2], 0);
- TextDrawBackgroundColor(TAnuncios[2], 255);
- TextDrawFont(TAnuncios[2], 1);
- TextDrawSetProportional(TAnuncios[2], 1);
- TextDrawSetShadow(TAnuncios[2], 0);
- return 1;
- }
- public OnFilterScriptExit()
- {
- TextDrawHideForAll(TAnuncios[0]);
- TextDrawHideForAll(TAnuncios[1]);
- TextDrawHideForAll(TAnuncios[2]);
- return 1;
- }
- public Anuncios()
- {
- if(TPAnuncios == 0)
- {
- new RAnuncios = random(sizeof(RAnunciosS)), string[128];
- TextDrawShowForAll(TAnuncios[0]);
- TextDrawShowForAll(TAnuncios[1]);
- TextDrawShowForAll(TAnuncios[2]);
- format(string, sizeof(string), "%s", RAnunciosS[RAnuncios]);
- TextDrawSetString(TAnuncios[0],string);
- SetTimer("Anuncios", 20000, false);
- TPAnuncios = 1;
- }
- else
- {
- TextDrawHideForAll(TAnuncios[0]);
- TextDrawHideForAll(TAnuncios[1]);
- TextDrawHideForAll(TAnuncios[2]);
- TPAnuncios = 0;
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement