[PEDIDO] Velocidade Apй outa de Carro
#1

RESOLVIDO
Reply
#2

hauaahaha peido? kkkkkkkkkkkk eu ri em fail do ano.
Reply
#3

Apague essa funзгo e coloque :


pawn Код:
//No Final do GM:

stock GetPlayerSpeed(playerid,bool:kmh_anzahl)
{
    if(GetPlayerState(playerid) != PLAYER_STATE_ONFOOT) return 0;
    new Float:Vx,Float:Vy,Float:Vz,Float:rtn;
    GetPlayerVelocity(playerid,Vx,Vy,Vz);
    rtn = floatsqroot(floatabs(floatpower(Vx + Vy + Vz,2)));
    return kmh_anzahl?floatround(rtn * 100 * 1.61):floatround(rtn * 100);
}


stock GetPlayerVehicleSpeed(playerid,bool:kmh_anzahl)
{
    if(!IsPlayerInAnyVehicle(playerid)) return 0;
    new Float:Vx,Float:Vy,Float:Vz,Float:rtn;
    GetVehicleVelocity(GetPlayerVehicleID(playerid),Vx,Vy,Vz);
    rtn = floatsqroot(floatabs(floatpower(Vx + Vy + Vz,2)));
    return kmh_anzahl?floatround(rtn * 100 * 1.61):floatround(rtn * 100);
}

Ambas retornam 0, a primeira funзгo se o jogador nгo estiver a pй e a segunda se o jogador nгo estiver em um veнculo.



Espero ter ajudado .
Reply
#4

RESOLVIDO
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)