[Ajuda] Problema com text - 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] Problema com text (
/showthread.php?tid=452337)
Problema com text -
Powers - 21.07.2013
Bom Gente fis um velocimetro e blz ai tipo O Veiculo e o combustivel aparecce assim:
Veiculo: Honet (522)
Combustivel: 88%
E o KM/H aparece assim KM/H
0
Eu quero que ele aparece assim KM/H: 0
Olha o print
Ainda tou pegando as coordenadas da lataria.
Re: Problema com text -
Cidiei - 21.07.2013
veja se nгo esta usando um ~n~ depois do KM/H:
Re: Problema com text -
Powers - 21.07.2013
Quote:
Originally Posted by Cidiei
veja se nгo esta usando um ~n~ depois do KM/H:
|
Negativo nгo estou usando.
PHP код:
new velopet[256],velopet1[256],velopet2[256],velopet3[256];
format(velopet,sizeof(velopet),"~b~~h~~h~Combustivel: ~w~%d%" ,Gas[vehicle]);
TextDrawSetString(CombustivelPet[i], velopet);
format(velopet1,sizeof(velopet1),"~p~~h~~h~Lataria: ~w~%0.0f" ,Speedo_HP/10);
TextDrawSetString(LatariaPet[i], velopet1);
format(velopet2,sizeof(velopet2),"~g~~h~~h~Veiculo: ~w~%s(%i)",vehName[GetVehicleModel(GetPlayerVehicleID(i))-400],GetVehicleModel(vehicle));
TextDrawSetString(VeiculoPet[i], velopet2);
format(velopet3,sizeof(velopet3),"~p~KM/H: ~w~%d" ,GetPlayerSpeed(i, true));
TextDrawSetString(VelocidadePet[i], velopet3);