public:
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",Spielergeschwindigkeit(i));
GameTextForPlayer(i, string, 1000, 3);
}
return 1;
}
Spielergeschwindigkeit(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 = Float:floatsqroot(x*x+ y*y+ z*z);
return floatround(rtn * 100 * 1.61);
}
es wird nichts angezeigt warum auch immer