Buenas EP,Hoy les traigo un TextDraw ya hecho por mí espero que les guste,les dejo el código.
No Tengo Fotos.
Lo Primero vamos a "OnPlayerConnect" y pegamos el siguiente código.
Esto hará que cuando el usuario se conecte ya vea el textdraw.
Después vamos a sus "News" y agregamos lo siguiente.
Despues a "OnGameModeInit" y agregamos esto.
Bueno eso fue todo espero que les sirva
No Tengo Fotos.
Lo Primero vamos a "OnPlayerConnect" y pegamos el siguiente código.
- Código:
ShowTextdrawForPlayer(playerid,TextDrawBasic);
Esto hará que cuando el usuario se conecte ya vea el textdraw.
Después vamos a sus "News" y agregamos lo siguiente.
- Código:
new Text:TextDrawBasic;
Despues a "OnGameModeInit" y agregamos esto.
- Código:
TextDrawBasic = TextDrawCreate(4.000000,435.000000,"TEXTO"); // Aquí donde dice código colocan el nombre de su SV.
TextDrawFont(TextDrawBasic,3); // Este es el Texto
TextDrawColor(TextDrawBasic,0xFFFF00AA); // Este es el color esta en rojo
TextDrawLetterSize(TextDrawBasic,0.599999,1.000000);
TextDrawSetOutline(TextDrawBasic,1);
TextDrawSetShadow(TextDrawBasic,1);
TextDrawSetProportional(TextDrawBasic,1);
TextDrawBackgroundColor(TextDrawBasic,0x000000ff);
Bueno eso fue todo espero que les sirva
Última edición por [N]oBoDy el Miér Abr 24, 2013 6:51 pm, editado 2 veces