[Ajuda] Velocidade alta
#1

Bom olha eu quiz pegar a velocidade do player e setar em uma Float.
Porem quando seta a float seta por exemplo 80245125056523 .
Numeros muito altos !!

pawn Код:
new Float:Media[MAX_PLAYERS];
pawn Код:
Media[playerid] = GetPlayerSpeed(playerid);
pawn Код:
stock GetPlayerSpeed(playerid)
{
    new Float:ST[4];
    if(IsPlayerInAnyVehicle(playerid))
    GetVehicleVelocity(GetPlayerVehicleID(playerid),ST[0],ST[1],ST[2]);
    else GetPlayerVelocity(playerid,ST[0],ST[1],ST[2]);
    ST[3] = floatsqroot(floatpower(floatabs(ST[0]), 2.0) + floatpower(floatabs(ST[1]), 2.0) + floatpower(floatabs(ST[2]), 2.0)) * 100.3;
    return floatround(ST[3]);
}
Sabe me dizer o porque?
Reply


Messages In This Thread
Velocidade alta - by Don_Speed - 04.11.2012, 12:57
Re: Velocidade alta - by paulor - 04.11.2012, 13:01
Re: Velocidade alta - by Don_Speed - 04.11.2012, 13:10
Re: Velocidade alta - by paulor - 04.11.2012, 13:22
Re: Velocidade alta - by Don_Speed - 04.11.2012, 13:39
Re: Velocidade alta - by paulor - 04.11.2012, 13:47
Re: Velocidade alta - by Don_Speed - 04.11.2012, 17:50

Forum Jump:


Users browsing this thread: 1 Guest(s)