[PETICION]Announce
#2

pawn Код:
#define ANUNCIO "Probando Anuncio" // йste es el anuncio que aparecerб

new Text:Anuncio;
new Text:Cuadro;

public OnFilterScriptInit() // o tambiйn puede ir en OnGameModeInit()
{
  Anuncio = TextDrawCreate(-300.0, 433.000, ANUNCIO);
  TextDrawBackgroundColor(Anuncio, 255);
  TextDrawFont(Anuncio, 1);
  TextDrawLetterSize(Anuncio, 0.500000, 1.000000);
  TextDrawColor(Anuncio, -1);
  TextDrawSetOutline(Anuncio, 0);
  TextDrawSetProportional(Anuncio, 1);
  TextDrawSetShadow(Anuncio, 1);
  Cuadro = TextDrawCreate(0.000000, 432.000000, "Cuadro");
  TextDrawBackgroundColor(Cuadro, 0);
  TextDrawFont(Cuadro, 1);
  TextDrawLetterSize(Cuadro, 0.500000, 1.300000);
  TextDrawColor(Cuadro, 0);
  TextDrawSetOutline(Cuadro, 0);
  TextDrawSetProportional(Cuadro, 1);
  TextDrawSetShadow(Cuadro, 1);
  TextDrawUseBox(Cuadro, 1);
  TextDrawBoxColor(Cuadro, 65535);
  TextDrawTextSize(Cuadro, 636.000000, 0.000000);
  SetTimer("Mover", 100, 1);//100 milisegundos ajusta el tiempo al que desees
  return 1;
}

forward Mover();
public Mover()
{
  static Float:pos = -300.00;
  pos += 10.00;//aquн lo que se moverб en el tiempo determinado
  if(pos >= 650.00) pos = -300.00;
  TextDrawHideForAll(Anuncio);
  TextDrawDestroy(Anuncio);
  Anuncio = TextDrawCreate(pos, 433.000, ANUNCIO);
  TextDrawBackgroundColor(Anuncio, 255);
  TextDrawFont(Anuncio, 1);
  TextDrawLetterSize(Anuncio, 0.500000, 1.000000);
  TextDrawColor(Anuncio, -1);
  TextDrawSetOutline(Anuncio, 0);
  TextDrawSetProportional(Anuncio, 1);
  TextDrawSetShadow(Anuncio, 1);
  TextDrawShowForAll(Anuncio);
  TextDrawShowForAll(Cuadro);
}
Creditos: Zamaroht por el TextDrawEditor, y a mн por que yo lo hice .

Puedes cambiar el color del texto o el color del cuadro. Vн el del video, pero es mбs facil con йste. Son menos lнneas y sуlo cambias un string.

Se vera asн:
Imagen
Saludos.
Reply


Messages In This Thread
[PETICION]Announce - by Karkanos - 25.01.2010, 14:32
Re: [PETICION]Announce - by Zoutdaxv - 25.01.2010, 15:42
Re: [PETICION]Announce - by TheChaoz - 25.01.2010, 15:51
Re: [PETICION]Announce - by Karkanos - 25.01.2010, 19:33
Re: [PETICION]Announce - by TheChaoz - 25.01.2010, 21:07
Re: [PETICION]Announce - by Zoutdaxv - 25.01.2010, 21:16
Re: [PETICION]Announce - by xenowort - 25.01.2010, 21:44
Re: [PETICION]Announce - by Zoutdaxv - 25.01.2010, 21:46
Re: [PETICION]Announce - by xenowort - 25.01.2010, 22:22
Re: [PETICION]Announce - by Karkanos - 26.01.2010, 00:46

Forum Jump:


Users browsing this thread: 2 Guest(s)