SA-MP Forums Archive
[Ajuda] Medir velocidade do veiculo - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Medir velocidade do veiculo (/showthread.php?tid=664520)



Medir velocidade do veiculo - BrunoSayden177 - 02.03.2019

O titulo jб fala tudo, qual a funзгo que mede a velocidade de um veiculo? Pesquisei no Search e nгo achei


Re: Medir velocidade do veiculo - nzt - 02.03.2019

Tente:
PHP код:
stock GetVehicleSpeed(vehicleid)
{
    new 
Float:xPos[3];
    
GetVehicleVelocity(vehicleidxPos[0], xPos[1], xPos[2]);
    return 
floatround(floatsqroot(xPos[0] * xPos[0] + xPos[1] * xPos[1] + xPos[2] * xPos[2]) * 170.00);




Re: Medir velocidade do veiculo - BrunoSayden177 - 04.03.2019

Quote:
Originally Posted by nzt
Посмотреть сообщение
Tente:
PHP код:
stock GetVehicleSpeed(vehicleid)
{
    new 
Float:xPos[3];
    
GetVehicleVelocity(vehicleidxPos[0], xPos[1], xPos[2]);
    return 
floatround(floatsqroot(xPos[0] * xPos[0] + xPos[1] * xPos[1] + xPos[2] * xPos[2]) * 170.00);

Vlw, +rep