Guten Abend,
Ich hab eine Frage, undzwar habe mich mithilfe von MrMonat ein Tacho erstellt, ich habe es genauso wie im Video, jedoch wird er mir nicht ingame angezeit.
Error bekomm ich beide.
Der Ganze Text: (einfaches DigiTachoSystem)
forward sekunde();
public sekunde()
{
new string[128];
for(new i=0; i<MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i))continue;
if(!IsPlayerInAnyVehicle(i))continue;
format(string,sizeof(string),"%ikm/h", getPlayerSpeed(i));
GameTextForPlayer(i, string, 1000, 1);
}
return 1;
}
getPlayerSpeed(playerid)
{
new Float:x, Float:y, Float:z, Float:rtn;
if(IsPlayerInAnyVehicle(playerid))
{
GetVehicleVelocity(GetPlayerVehicleID(playerid), x, y, z);
}
else
{
GetPlayerVelocity(playerid, x, y, z);
}
//rtn = wurzel(x*x + y*y + z*z);
rtn = floatsqroot(x*x + y*y + z*z);
return floatround(rtn * 100 * 1.61);
}