07.08.2011, 15:20
Se supone que este codigo hace que aparesca un texdraw depues desaparece y despues de x tiempo vuelve a aparecer pero otro texto en el texdraw pero resulta que cuando lo pongo nada mas aparece y depues desaparece y ya no vulve a salir
pawn Код:
#include <a_samp>
new Timer;
forward AutoAnuncios();
new Text:anuncios;
new TextAnuncios[][] =
{
"Texto mas largo que puede entrar aqui1",
"Texto mas largo que puede entrar aqui2",
"Texto mas largo que puede entrar aqui3"
};
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, anuncios);
return 1;
}
public OnGameModeInit()
{
anuncios = TextDrawCreate(150.000000, 360.000000, " ");
TextDrawAlignment(anuncios,0);
TextDrawBackgroundColor(anuncios, 255);
TextDrawFont(anuncios, 1);
TextDrawLetterSize(anuncios, 0.500000, 4.300000);
TextDrawColor(anuncios, 65535);
TextDrawSetOutline(anuncios, 0);
TextDrawSetProportional(anuncios, 1);
SetTimer("AutoAnuncios",60000,1);
Timer = SetTimer("ShowMessage",61000,1);
return 1;
}
public OnFilterScriptExit()
{
for(new i = 0; i < MAX_PLAYERS; i++)
TextDrawHideForPlayer(i, anuncios);
TextDrawHideForAll(anuncios);
TextDrawDestroy(anuncios);
KillTimer(Timer);
return 1;
}
public AutoAnuncios()
{
TextDrawSetString(anuncios, TextAnuncios[random(sizeof(TextAnuncios))]);
return 1;
}
forward ShowMessage( );
public ShowMessage( )
{
TextDrawShowForAll(anuncios);
SetTimer("HideMessage",30000,1);
}
forward HideMessage( );
public HideMessage( )
{
TextDrawHideForAll(anuncios);
}