Akkor nagyon meg köszönném
Dupla hozzászólás automatikusan összefûzve. ( 2012. október 07. - 23:15:39 )
És a sebesség mérõt is kellene formázni legyél szíves ezt is meg csinálni
Speedometer_Setup(playerid)
{
// Setup the speedometer for the player
APlayerData[playerid][speedometerText] = TextDrawCreate(480.0, 395.0, \" \");
APlayerData[playerid][FuelGauge] = TextDrawCreate(475.0, 410.0, \" \");
// Enable the TextDraw for this player
TextDrawShowForPlayer(playerid, APlayerData[playerid][speedometerText]);
TextDrawShowForPlayer(playerid, APlayerData[playerid][FuelGauge]);
// Start the speedometer timer
APlayerData[playerid][speedometerTimer] = SetTimerEx(\"Speedometer_Update\", 500, true, \"i\", playerid);
return 1;
}