30.09.2010, 21:05
Eae pessoal, meu textdraw ta bugando, olha abaixo:
Ele como ta?
O que sera que pode ser?
Ele como ta?
pawn Код:
new string[255];
format(string, sizeof(string), " ");
format(string, sizeof(string), "Gasolina: %d Litros", combustible[vehicleid]);
//==========================================================
actualizarMedidor(playerid,string[255])
{
new tmp[400];
TankString[playerid]=string;
TextDrawDestroy(medidorTanque[playerid]);
format(tmp, sizeof(tmp), "%s %s",TankString[playerid],SpeedString[playerid]);
medidorTanque[playerid] = TextDrawCreate(470.000000, 133.000000,tmp);
TextDrawFont(medidorTanque[playerid],3);
TextDrawTextSize(medidorTanque[playerid], 50.0, 35.0);
TextDrawSetOutline(medidorTanque[playerid],1);
TextDrawShowForPlayer(playerid,medidorTanque[playerid]);
}