[Ajuda] Duvida sobre textdraws
#1

Como faзo para meter a textdraw a mudar de 2 em 2 segundos de cor?
Reply
#2

https://sampwiki.blast.hk/wiki/TextDrawColor

https://sampwiki.blast.hk/wiki/SetTimer
Reply
#3

http://www.4shared.com/rar/hUjc19_w/Noticias.html
Reply
#4

fiz assim
pawn Код:
public p
{
TextDrawColor(piscad,0x66ff00ff);
SetTimer("p", 2000, false);
TextDrawColor(pd,0xffffffff);
}
Reply
#5

Quote:
Originally Posted by caoraivoso3
Посмотреть сообщение
fiz assim
pawn Код:
public p
{
TextDrawColor(piscad,0x66ff00ff);
SetTimer("p", 2000, false);
TextDrawColor(pd,0xffffffff);
}
What ?
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;
}
Onde estб " TEXTDRAW " troque pelo nome da Textdraw que quer mudar a cor.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)