13.03.2013, 16:44
Como faзo para meter a textdraw a mudar de 2 em 2 segundos de cor?
public p
{
TextDrawColor(piscad,0x66ff00ff);
SetTimer("p", 2000, false);
TextDrawColor(pd,0xffffffff);
}
fiz assim
pawn Код:
|
new QueCor;
forward MudarCorText();
public MudarCorText()
{
if(QueCor == 0)
{
TextDrawColor(TEXTDRAW,0x66ff00ff);
QueCor = 1;
SetTimer("MudarCorText", 2000, false); // NГO irб ficar repetindo ...
}
else if(QueCor == 1)
{
TextDrawColor(TEXTDRAW,0xffffffff);
QueCor = 0;
SetTimer("MudarCorText", 2000, false); // NГO irб ficar repetindo ...
}
// ....
return 1;
}