10.02.2013, 18:46
(
Последний раз редактировалось Noles2197; 10.02.2013 в 20:06.
)
I made this text draw, but the text is appearing black and should be pink. How do I fix this?
pawn Код:
new Text:Info;
public OnGameModeInit()
{
Info = TextDrawCreate(0,0,"This is the best server on all of SA-MP");
TextDrawAlignment(Info,1);
TextDrawFont(Info,2);
TextDrawColor(Info,0xFF7FB6AA);
TextDrawBoxColor(Info, 0x0094FFAA);
TextDrawUseBox(Info,1);
}
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid,Info);
}