Como se puede hacer un Texdraw Atm
#2

No te cuesta nada buscar he visto algunos fs de eso.

pawn Код:
forward AutoAnuncios();
new Text:anuncios;
new TextAnuncios[][] =
{
    "~r~aqui va tu primer ~w~anuncio automatico",
    "~b~aqui otro ~y~si quieres",
    "~g~y asi pones ~b~muchos  mas",
    "~w~aqui teminan ~p~pero" // si quieres agregar mas solo copias esta linea la pegas debajo de la misma.
};
public OnPlayerConnect(playerid)
{
       TextDrawShowForPlayer(playerid, anuncios); // puedes cambiarlo a onplayerspawn si qieres
    return 1;
}
public OnGameModeInit()
{
    anuncios = TextDrawCreate(7.000000, 432.000000, " ");
    TextDrawAlignment(anuncios,0);
    TextDrawBackgroundColor(anuncios, 255);
    TextDrawFont(anuncios, 1);
    TextDrawLetterSize(anuncios, 0.280000, 0.899999);
    TextDrawColor(anuncios, -1);
    TextDrawSetOutline(anuncios, 1);
        SetTimer("AutoAnuncios",60000,1); //aqui le cambias el tiempo en el cual cambiaran, esta en 1 minuto
   return 1;
}
public OnGameModeExit()
{
    for(new i = 0; i < MAX_PLAYERS; i++)
        TextDrawHideForPlayer(i, anuncios);
    return 1;
}
public AutoAnuncios()
{
    TextDrawSetString(anuncios, TextAnuncios[random(sizeof(TextAnuncios))]);
    return 1;
}
Reply


Messages In This Thread
Como se puede hacer un Texdraw Atm - by chucho - 03.08.2011, 05:55
Re: Como se puede hacer un Texdraw Atm - by dis77urbio - 03.08.2011, 06:22
Respuesta: Como se puede hacer un Texdraw Atm - by chucho - 03.08.2011, 06:25
Re: Respuesta: Como se puede hacer un Texdraw Atm - by dis77urbio - 03.08.2011, 06:26
Respuesta: Como se puede hacer un Texdraw Atm - by GoldenDragon - 03.08.2011, 21:45
Re: Respuesta: Como se puede hacer un Texdraw Atm - by dis77urbio - 03.08.2011, 22:19
Respuesta: Como se puede hacer un Texdraw Atm - by chucho - 04.08.2011, 00:07

Forum Jump:


Users browsing this thread: 2 Guest(s)