- Thread Author
- #1
FIX Garage Exit Redage
Open Visual Studio, open the project, find the file GarageManager.cs search
for the following:
C#:
public void GetVehicleFromGarage
C#:
var veh = NAPI.Vehicle.CreateVehicle((VehicleHash)NAPI.Util.GetHashKey(vData.Model), Position + new Vector3(0, 0, 0.3), Rotation, 0, 0, number);
Replace with this:
C#:
var veh = NAPI.Vehicle.CreateVehicle((VehicleHash)NAPI.Util.GetHashKey(vData.Model), player.Position + new Vector3(0, 0, 0.3), Rotation, 0, 0, number);
Below are:
C#:
veh.Rotation = Rotation;
Replace with:
C#:
veh.Position = Position;