Guten Tag,
Ich bin grade dabei ein Tacho System zu scripten:
Code:
getPlayerSpeed(playerid)
{
new Float:x, Float:y, Float:z;
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);
}
Allerdings bekomme ich 2 Errors wenn ich Compile:
undefined symbol "rtn"
undefined symbol "rtn"
Ich hoffe mir kann jemand helfen.
MFG
Lukas