Skip to content

Commit

Permalink
Update VehicleConfig.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
TH3AL3X authored Nov 22, 2020
1 parent a66f8d5 commit e316331
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions VehicleCrash/VehicleConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,31 @@ public class VehicleConfig : IRocketPluginConfiguration

public float wheelchancedamage;

public ushort ifvehiclehasXhealthStopWork;

public ushort burnfueldamageifvehiclestopworking;

public bool burnfuelifvehiclestopworking;

public void LoadDefaults()
{
nausea = true;

ifvehiclehasXhealthStopWork = 248; // this means 50%

nauseatime = 10;

healthdamage = 11;

wheelsdamage = true;

wheelchancedamage = .45f;
burnfuelifvehiclestopworking = true;

burnfueldamageifvehiclestopworking = 50;

wheelchancedamage = .45f; // this means 45% nigga

autowarnmechanic = true;
}
}
}
}

0 comments on commit e316331

Please sign in to comment.