07.01.2011, 01:29
i need a way to make a car go about 2-3 times faster. i have the activation and deactivation command setup i just need the part where the car goes faster any ideas? ive seen it done before
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
new Float:x, Float:y, Float:z;
GetVehicleVelocity(GetPlayerVehicleID(playerid), x, y, z);
SetVehicleVelocity(GetPlayerVehicleID(playerid), x*1.2, y*1.2, z*1.2);
}