Skip to content

Commit

Permalink
Double Insurgent's mass, tweak parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
StyledStrike committed Dec 28, 2024
1 parent 5e47b11 commit 5f436aa
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions lua/entities/gtav_insurgent.lua
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ end

if SERVER then
ENT.SpawnPositionOffset = Vector( 0, 0, 45 )
ENT.ChassisMass = 1000
ENT.ChassisMass = 2000
ENT.FallOnCollision = true

ENT.LightBodygroups = {
Expand All @@ -189,16 +189,20 @@ if SERVER then
self:SetBrakePower( 3800 )
self:SetDifferentialRatio( 3.3 )
self:SetPowerDistribution( -0.4 )
self:SetMinRPMTorque( 2000 )
self:SetMaxRPMTorque( 2500 )

self:SetMaxSteerAngle( 30 )
self:SetSteerConeMaxSpeed( 1100 )

self:SetSuspensionLength( 14 )
self:SetSpringStrength( 500 )
self:SetSpringDamper( 2500 )
self:SetSpringStrength( 900 )
self:SetSpringDamper( 3500 )

self:SetForwardTractionMax( 3000 )
self:SetSideTractionMin( 1000 )
self:SetSideTractionMultiplier( 38 )
self:SetForwardTractionMax( 4700 )
self:SetSideTractionMax( 4500 )
self:SetSideTractionMin( 2000 )

self:CreateSeat( Vector( -2, 21.5, 9 ), Angle( 0, 270, -5 ), Vector( 40, 100, 0 ), true )
self:CreateSeat( Vector( 15, -21.5, 7 ), Angle( 0, 270, 5 ), Vector( 40, -100, 0 ), true )
Expand Down

0 comments on commit 5f436aa

Please sign in to comment.