06.05.2015, 21:00
Nгo entendi muito bem, mais se for em TextDraw fiz um exemplo para que vocк possa entender:
PHP код:
new textos[5][] =
{
{"eta porra"},
{"eta porra 2"},
{"eta porra xdddd"},
{"eta porra crl"},
{"eta porra 144"}
}, Text:Letreiro; //Variбveis globais
// em OnGameModeInit:
public OnGameModeInit()
{
/*
Tempo para mudar os textos, coloquei a cada 1min,
caso queira mais tempo modifique '2' pelos minutos que vc quiser
*/
SetTimer("AtualizarLetreiro", 2 * 60 * 1000, true);
//-------------------------------------------------------------------------------
Letreiro = TextDrawCreate(493.714233, 8.533338, " "); // Vocк deve criar uma textdraw na posiзгo que vocк quer, isso й sу para exemplo
TextDrawLetterSize(Letreiro, 0.199333, 1.331200);
TextDrawAlignment(Letreiro, 1);
TextDrawColor(Letreiro, -1);
TextDrawSetShadow(Letreiro, 0);
TextDrawSetOutline(Letreiro, 1);
TextDrawBackgroundColor(Letreiro, 714);
TextDrawFont(Letreiro, 2);
TextDrawSetProportional(Letreiro, 1);
//-------------------------------------------------------------------------------
return 1;
}
forward AtualizarLetreiro();
public AtualizarLetreiro()
{
TextDrawHideForAll(Letreiro); //para o textdraw apagar as infos antigas
TextDrawSetString(Letreiro, textos[random(5)]); //atualizar informaзхes
TextDrawShowForAll(Letreiro); //exibe o text draw com as novas informaзхes
return 1;
}