[Ajuda] KMH
#1

Galera alguem me da uma base pra mim fazer KMH to carro nao precisa salvamento.
Reply
#2

Ta aн meu jovem https://sampwiki.blast.hk/wiki/GetVehicleVelocity
Reply
#3

Vlw! isso msm que eu queria !
Reply
#4

Sim, mas existem funзхes criadas por outras pessoas para te ajudar mais nisso. Como a GetPlayerSpeed. Com base nisso, use TextDraw, se й que vocк quer fazer com que seja mostrado constantemente, tipo um velocнmetro.
Reply
#5

ja vi essa funзao GetPlayerSpeed mas creio que ele e usada pra velocidade!
Reply
#6

pawn Код:
esse й para os veнculos.
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)) * 165.0;
    return floatround(ST[3]);
}

esse й para as bicicletas.
stock GetPlayerSpeedVelocity(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)) * 30.0;
    return floatround(ST[3]);
}
Reply
#7

tem como diminuar as info pois fico muito grande!
olha
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)