Portal SAMP
[Pedido] GetVehicleVelocity - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP Mobile (https://portalsamp.com/forumdisplay.php?fid=11)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=12)
+--- Tópico: [Pedido] GetVehicleVelocity (/showthread.php?tid=1183)



GetVehicleVelocity - unk.cs - 14/05/2021

Alguém tem essa função pra SAMP Android?


RE: GetVehicleVelocity - OTAKEIRO - 09/06/2021

Código:
stock GetVehicleSpeed(vehicleid)
{
    new Float:v_x;
    new Float:v_y;
    new Float:v_z;

    GetVehicleVelocity(vehicleid, v_x, v_y, v_z);

    return floatround(floatsqroot((v_x * v_x) + (v_y * v_y) + (v_z * v_z)) * 181.5);
}