SA-MP Forums Archive
[Ajuda] TextDraw preto - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] TextDraw preto (/showthread.php?tid=458485)



TextDraw preto - MoonRey - 17.08.2013

Ola, eu tento mudar a parte branca do TextDraw para Laranja e em vez de ficar Laranja, fica tudo preto, alguem pode me ajudar?

Codigo sem modificaзгo:

pawn Код:
CarroForteText = TextDrawCreate(190.0000,380.0000,"Area de Carregamento de Malotes");
    TextDrawColor(HorasTxT,0xFFFFFFFF);
    TextDrawFont(CarroForteText, 1);
    TextDrawUseBox(CarroForteText, 0);
    TextDrawSetShadow(CarroForteText,0);
    TextDrawSetOutline(CarroForteText,2);
    TextDrawBackgroundColor(CarroForteText,0x000000FF);
    TextDrawLetterSize(CarroForteText,0.5,1.5);
Codigo com modificaзгo, que acontece o problema:

pawn Код:
CarroForteText = TextDrawCreate(190.0000,380.0000,"Area de Carregamento de Malotes");
    TextDrawColor(HorasTxT,0xFFA500);
    TextDrawFont(CarroForteText, 1);
    TextDrawUseBox(CarroForteText, 0);
    TextDrawSetShadow(CarroForteText,0);
    TextDrawSetOutline(CarroForteText,2);
    TextDrawBackgroundColor(CarroForteText,0x000000FF);
    TextDrawLetterSize(CarroForteText,0.5,1.5);



Re: TextDraw preto - DannielCooper - 17.08.2013

pawn Код:
CarroForteText = TextDrawCreate(190.0000,380.0000,"~y~Area de Carregamento de Malotes");
    TextDrawColor(HorasTxT,0xFFA500);
    TextDrawFont(CarroForteText, 1);
    TextDrawUseBox(CarroForteText, 0);
    TextDrawSetShadow(CarroForteText,0);
    TextDrawSetOutline(CarroForteText,2);
    TextDrawBackgroundColor(CarroForteText,0x000000FF);
    TextDrawLetterSize(CarroForteText,0.5,1.5);
Tentai.


Re: TextDraw preto - MoonRey - 17.08.2013

Valew, pensei que nгo dava pra usar "~y~" em TextDraw, to boiando heauheuheaueah


Re: TextDraw preto - DannielCooper - 17.08.2013

Hehe. ~y~ Sу se usa em TextDraw, mais tб bom nй..


Re: TextDraw preto - Juniiro3 - 17.08.2013

Se usa em GameText tambйm Danniel


Re: TextDraw preto - MoonRey - 17.08.2013

Danniel, ele usa em GameText tambem como o Juniiro3 disse, por isso pensei que nгo desse pra usar em TextDraw =/


Re: TextDraw preto - Juniiro3 - 17.08.2013

pawn Код:
TextDrawColor(HorasTxT,0xFFA500);
Isso aqui tambйm tб errado, faltou os dois ъltimos nъmeros na cor:

pawn Код:
TextDrawColor(HorasTxT,0xFFA500FF);