15.06.2013, 22:06
nгo entendi mais para almentar a velocidade do velocimetro
desculpe se nгo for isso man foi isso que entendi
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 < isso.3; // Aqui que eu marquei faz o velocimetro mudar de velocidade se vc por o 100 em 150 o velocimetro com o infernus vai chegar a 200 por ai para chegar a 180 ponhe 140 acho que vai chegar
return floatround(ST[3]);
}