Hey leute. Ich bin gerade am Tacho dran und ich hatte mich bisher noch nicht so sehr damit beschäftigt :P.
Nun bekomme ich aber aus meiner Rechnung einen 10 Stelligen Wert heraus ?.
public Tachopub()
{
for(new playerid = 0; playerid < MAX_PLAYERS; playerid++)
{
new Float:x,Float:y,Float:z,Float:kmh;
GetVehicleVelocity(GetPlayerVehicleID(playerid),x,y,z);
kmh = floatsqroot(x*x + y*y + z*z) * 100 * 2;
format(Tachostring,sizeof(Tachostring), "%d",kmh);
TextDrawSetString(Tacho[playerid],Tachostring);
TextDrawShowForPlayer(playerid,Tacho[playerid]);
}
}
Danke im Vorraus.