07.07.2017, 07:59
how can i remove the shadow at the back of the text?

TextDrawSetShadow(YOUR_TEXT_NAME, 0);
Should be change like this:
Код:
TextDrawSetShadow(YOUR_TEXT_NAME, 0); |
TextDrawSetShadow(VNAME[playerid], 0);//dont mind the different names
SPEEDOS[playerid] = TextDrawCreate(49.0,321.0,"~g~Speed: ~w~km/h ");
TextDrawFont(SPEEDOS[playerid], 1);
TextDrawLetterSize(SPEEDOS[playerid], 0.190000, 0.93000);
TextDrawColor(SPEEDOS[playerid], -1);
TextDrawShowForPlayer(playerid,SPEEDOS[playerid]);
TextDrawBackgroundColor(SPEEDOS[playerid], 255);
TextDrawSetShadow(SPEEDOS[playerid], 0);
TextDrawSetOutline(SPEEDOS[playerid], 1);