16.04.2011, 15:58
Como eu defino que "X" TEXTDRAW Vai mostrar A VELOCIDADE DO CARRO ?
TextDrawSetString(ABC, "Noob Lendo"); //Digamos que o ID do seu TextDraw seja igual б variбvel ABC. Vocк pode usar format em uma string e colocб-la no lugar de "Noob Lendo" para que aquela seja mostrada no lugar dessa frase.
TextDrawShowForPlayer(playerid, ABC);//Mostrarб o TextDraw de ID igual б variбvel ABC :D
new Float:X;
X = GetVehicleVelocity;
if(strcmp("/velocimetro", cmdtext, true) == 0)
{
new Float:X, string[128];
GetVehicleVelocity(GetPlayerVehicleID(playerid), X);
format(string, sizeof(string), "Seu veнculo estб a: %f KM/H", X);
SendClientMessage(playerid, 0xFFFFFFFF, string);
return 1;
}
new Text:Velocimetro;
//OnPlayerEnterVehicle
Velocimetro = TextDrawCreate(1.000000,2.000000,"Velocimetro *-*");
// E o resto do velocimetro que esqueci como й D: