--[[
___ _______ _
/ _ |____/ ___/ / ___ ____ ___ (_)__
/ __ /___/ /__/ _ \/ _ `(_-<(_-</ (_-<
/_/ |_| \___/_//_/\_,_/___/___/_/___/
SecondLogic @ Inspare
]]
local Tune = {}
--[[Misc]]
Tune.LoadDelay = .1 -- Delay before initializing chassis (in seconds)
Tune.AutoStart = false -- Set to false if using manual ignition plugin
Tune.AutoFlip = true -- Set to false if using manual flip plugin
--[[Wheel Alignment]]
--[Don't physically apply alignment to wheels]
--[Values are in degrees]
Tune.FCamber = -2
Tune.RCamber = -2
Tune.FToe = 0
Tune.RToe = 0
--[[Weight and CG]]
Tune.Weight = 3472 -- Total weight (in pounds)
Tune.WeightBSize = { -- Size of weight brick (dimmensions in studs ; larger = more stable)
--[[Width]] 6 ,
--[[Height]] 3 ,
--[[Length]] 14 }
Tune.WeightDist = 50 -- Weight distribution (0 - on rear wheels, 100 - on front wheels, can be <0 or >100)
Tune.CGHeight = 1 -- Center of gravity height (studs relative to median of all wheels)
Tune.WBVisible = false -- Makes the weight brick visible
--Unsprung Weight
Tune.FWheelDensity = .45 -- Front Wheel Density
Tune.RWheelDensity = .45 -- Rear Wheel Density
Tune.FWLgcyDensity = 1 -- Front Wheel Density [PGS OFF]
Tune.RWLgcyDensity = 1 -- Rear Wheel Density [PGS OFF]
Tune.AxleSize = 2 -- Size of structural members (larger = more stable/carry more weight)
Tune.AxleDensity = .1 -- Density of structural members
--[[Susupension]]
Tune.SusEnabled = true -- works only in with PGSPhysicsSolverEnabled, defaults to false when PGS is disabled
--Front Suspension
Tune.FSusDamping = 1500 -- Spring Dampening
Tune.FSusStiffness = 9000 -- Spring Force
Tune.FAntiRoll = 50000 -- Anti-Roll (Gyro Dampening)
Tune.FSusLength = 2.00 -- Suspension length (in studs)
Tune.FPreCompress = .2 -- Pre-compression adds resting length force
Tune.FExtensionLim = .3 -- Max Extension Travel (in studs)
Tune.FCompressLim = 0 -- Max Compression Travel (in studs)
Tune.FSusAngle = 80 -- Suspension Angle (degrees from horizontal)
Tune.FWsBoneLen = 5 -- Wishbone Length
Tune.FWsBoneAngle = 0 -- Wishbone angle (degrees from horizontal)
Tune.FAnchorOffset = { -- Suspension anchor point offset (relative to center of wheel)
--[[Lateral]] -.4 , -- positive = outward
--[[Vertical]] -.5 , -- positive = upward
--[[Forward]] 0 } -- positive = forward
--Rear Suspension
Tune.RSusDamping = 1500 -- Spring Dampening
Tune.RSusStiffness = 9000 -- Spring Force
Tune.FAntiRoll = 50000 -- Anti-Roll (Gyro Dampening)
Tune.RSusLength = 2.00 -- Suspension length (in studs)
Tune.RPreCompress = -0.3 -- Pre-compression adds resting length force
Tune.RExtensionLim = .3 -- Max Extension Travel (in studs)
Tune.RCompressLim = 0 -- Max Compression Travel (in studs)
Tune.RSusAngle = 80 -- Suspension Angle (degrees from horizontal)
Tune.RWsBoneLen = 5 -- Wishbone Length
Tune.RWsBoneAngle = 0 -- Wishbone angle (degrees from horizontal)
Tune.RAnchorOffset = { -- Suspension anchor point offset (relative to center of wheel)
--[[Lateral]] -.4 , -- positive = outward
--[[Vertical]] -.5 , -- positive = upward
--[[Forward]] 0 } -- positive = forward
--Aesthetics
Tune.SusVisible = true -- Spring Visible
Tune.WsBVisible = false -- Wishbone Visible
Tune.SusRadius = .2 -- Suspension Coil Radius
Tune.SusThickness = .1 -- Suspension Coil Thickness
Tune.SusColor = "Bright red" -- Suspension Color [BrickColor]
Tune.SusCoilCount = 6 -- Suspension Coil Count
Tune.WsColor = "Black" -- Wishbone Color [BrickColor]
Tune.WsThickness = .1 -- Wishbone Rod Thickness
--[[Wheel Stabilizer Gyro]]
Tune.FGyroDamp = 400 -- Front Wheel Non-Axial Dampening
Tune.RGyroDamp = 400 -- Rear Wheel Non-Axial Dampening
--[[Steering]]
Tune.SteerInner = 36 -- Inner wheel steering angle (in degrees)
Tune.SteerOuter = 37 -- Outer wheel steering angle (in degrees)
Tune.SteerSpeed = .05 -- Steering increment per tick (in degrees)
Tune.ReturnSpeed = .1 -- Steering increment per tick (in degrees)
Tune.SteerDecay = 320 -- Speed of gradient cutoff (in SPS)
Tune.MinSteer = 10 -- Minimum steering at max steer decay (in percent)
Tune.MSteerExp = 1 -- Mouse steering exponential degree
--Steer Gyro Tuning
Tune.SteerD = 1000 -- Steering Dampening
Tune.SteerMaxTorque = 10000 -- Steering Force
Tune.SteerP = 30000 -- Steering Aggressiveness
--[[Engine]]
--Torque Curve
Tune.Horsepower = 4000 -- [TORQUE CURVE VISUAL]
Tune.IdleRPM = 800 -- https://www.desmos.com/calculator/2uo3hqwdhf
Tune.PeakRPM = 8000 -- Use sliders to manipulate values
Tune.Redline = 8500 -- Copy and paste slider values into the respective tune values
Tune.EqPoint = 6800
Tune.PeakSharpness = 3.8
Tune.CurveMult = 0.07
--Incline Compensation
Tune.InclineComp = .5 -- Torque compensation multiplier for inclines (applies gradient from 0-90 degrees)
--Misc
Tune.RevAccel = 400 -- RPM acceleration when clutch is off
Tune.RevDecay = 75 -- RPM decay when clutch is off
Tune.RevBounce = 470 -- RPM kickback from redline
Tune.IdleThrottle = 3 -- Percent throttle at idle
Tune.ClutchTol = 150 -- Clutch engagement threshold (higher = faster response)
--[[Drivetrain]]
Tune.Config = "AWD" --"FWD" , "RWD" , "AWD"
--Differential Settings
Tune.FDiffSlipThres = 50 -- 1 - 100% (Max threshold of applying full lock determined by deviation from avg speed)
Tune.FDiffLockThres = 50 -- 0 - 100% (0 - Bias toward slower wheel, 100 - Bias toward faster wheel)
Tune.RDiffSlipThres = 50 -- 1 - 100%
Tune.RDiffLockThres = 50 -- 0 - 100%
Tune.CDiffSlipThres = 50 -- 1 - 100% [AWD Only]
Tune.CDiffLockThres = 50 -- 0 - 100% [AWD Only]
--Traction Control Settings
Tune.TCSEnabled = true -- Implements TCS
Tune.TCSThreshold = 20 -- Slip speed allowed before TCS starts working (in SPS)
Tune.TCSGradient = 20 -- Slip speed gradient between 0 to max reduction (in SPS)
Tune.TCSLimit = 10 -- Minimum amount of torque at max reduction (in percent)
--[[Transmission]]
Tune.TransModes = {"Auto"} --[[
[Modes]
"Auto" : Automatic shifting
"Semi" : Clutchless manual shifting, dual clutch transmission
"Manual" : Manual shifting with clutch
>Include within brackets
eg: {"Semi"} or {"Auto", "Manual"}
>First mode is default mode ]]
--Automatic Settings
Tune.AutoShiftMode = "Speed" --[[
[Modes]
"Speed" : Shifts based on wheel speed
"RPM" : Shifts based on RPM ]]
Tune.AutoUpThresh = -200 --Automatic upshift point (relative to peak RPM, positive = Over-rev)
Tune.AutoDownThresh = 1400 --Automatic downshift point (relative to peak RPM, positive = Under-rev)
--Gear Ratios
Tune.FinalDrive = 3.31 -- Gearing determines top speed and wheel torque
Tune.Ratios = { -- Higher ratio = more torque, Lower ratio = higher top speed
--[[Reverse]] 2.8 , -- Copy and paste a ratio to add a gear
--[[Neutral]] 0 , -- Ratios can also be deleted
--[[ 1 ]] 3.98 , -- Reverse, Neutral, and 1st gear are required
--[[ 2 ]] 2.61 ,
--[[ 3 ]] 1.9 ,
--[[ 4 ]] 1.48 ,
--[[ 5 ]] 1.16 ,
--[[ 6 ]] 0.99 ,
--[[ 7 ]] 0.84 ,
--[[ 8 ]] 0.51 ,
--[[ 9 ]] 0.24 ,
--[[ 10 ]]0.08 ,
--[[ 11 ]]0.01 ,
}
Tune.FDMult = 1 -- -- Ratio multiplier (Change this value instead of FinalDrive if car is struggling with torque ; Default = 1)
--[[Brakes]]
Tune.ABSEnabled = true -- Implements ABS
Tune.ABSThreshold = 20 -- Slip speed allowed before ABS starts working (in SPS)
Tune.FBrakeForce = 3000 -- Front brake force
Tune.RBrakeForce = 2500 -- Rear brake force
Tune.PBrakeForce = 100000 -- Handbrake force
Tune.FLgcyBForce = 15000 -- Front brake force [PGS OFF]
Tune.RLgcyBForce = 10000 -- Rear brake force [PGS OFF]
Tune.LgcyPBForce = 25000 -- Handbrake force [PGS OFF]
--[[[Default Controls]]
--Peripheral Deadzones
Tune.Peripherals = {
MSteerWidth = 67 , -- Mouse steering control width (0 - 100% of screen width)
MSteerDZone = 10 , -- Mouse steering deadzone (0 - 100%)
ControlLDZone = 5 , -- Controller steering L-deadzone (0 - 100%)
ControlRDZone = 5 , -- Controller steering R-deadzone (0 - 100%)
}
--Control Mapping
Tune.Controls = {
--Keyboard Controls
--Mode Toggles
ToggleTCS = Enum.KeyCode.T ,
ToggleABS = Enum.KeyCode.Y ,
ToggleTransMode = Enum.KeyCode.M ,
ToggleMouseDrive = Enum.KeyCode.R ,
--Primary Controls
Throttle = Enum.KeyCode.Up ,
Brake = Enum.KeyCode.Down ,
SteerLeft = Enum.KeyCode.Left ,
SteerRight = Enum.KeyCode.Right ,
--Secondary Controls
Throttle2 = Enum.KeyCode.W ,
Brake2 = Enum.KeyCode.S ,
SteerLeft2 = Enum.KeyCode.A ,
SteerRight2 = Enum.KeyCode.D ,
--Manual Transmission
ShiftUp = Enum.KeyCode.E ,
ShiftDown = Enum.KeyCode.Q ,
Clutch = Enum.KeyCode.LeftShift ,
--Handbrake
PBrake = Enum.KeyCode.P ,
--Mouse Controls
MouseThrottle = Enum.UserInputType.MouseButton1 ,
MouseBrake = Enum.UserInputType.MouseButton2 ,
MouseClutch = Enum.KeyCode.W ,
MouseShiftUp = Enum.KeyCode.E ,
MouseShiftDown = Enum.KeyCode.Q ,
MousePBrake = Enum.KeyCode.LeftShift ,
--Controller Mapping
ContlrThrottle = Enum.KeyCode.ButtonR2 ,
ContlrBrake = Enum.KeyCode.ButtonL2 ,
ContlrSteer = Enum.KeyCode.Thumbstick1 ,
ContlrShiftUp = Enum.KeyCode.ButtonY ,
ContlrShiftDown = Enum.KeyCode.ButtonX ,
ContlrClutch = Enum.KeyCode.ButtonR1 ,
ContlrPBrake = Enum.KeyCode.ButtonL1 ,
ContlrToggleTMode = Enum.KeyCode.DPadUp ,
ContlrToggleTCS = Enum.KeyCode.DPadDown ,
ContlrToggleABS = Enum.KeyCode.DPadRight ,
}
--[[Weight Scaling]]
--[Cubic stud : pounds ratio]
--[STANDARDIZED: Don't touch unless needed]
Tune.WeightScaling = 1/50 --Default = 1/50 (1 cubic stud = 50 lbs)
Tune.LegacyScaling = 1/10 --Default = 1/10 (1 cubic stud = 10 lbs) [PGS OFF]
tune = Tune
local newreq = require
local oldreq = function(...)
print({...})
local returnval = newreq(...)
if tostring(...) == 'A-Chassis Tune' then
for i,v in pairs(returnval) do
if tune[i] then
returnval[i] = tune[i]
end
end
end
return returnval
end
getgenv().require = oldreq
getrenv().require = oldreq
greenville speed script 【11gear!】 - Pastebin.com (2024)
Top Articles
Chicago funeral home director: 'These kids don't expect to live a full life'
All Obituaries | Quinn McGowen Funeral Home | Wilmington NC funeral home and cremation Wallace NC funeral home and cremation Burgaw NC funeral home and cremation
Morticians And Funeral Directors Are Spilling The Creepy, Sad, And Uncomfortable Secrets No One Knows
Latest Posts
Georgia Lottery Cash 3 Calendar
In Chicago, an undertaker tries to save teens from the streets — and is burying those he can’t
Recommended Articles
- 3 Ken Tonari No Tooi Hito Ep 1 Online
- Arrival book — shaun tan
- De: Yabatanien Day 1
- Slim Pickens Cannes 2019
- Selma Blair Biography
- Numbaka Old Man
- Hellsing Ultimate Light
- The Age of Adaline movie review (2015) | Roger Ebert
- Ah Harima-Nada Dub Episode 5
- The best epilators of 2024 for hair removal, including Philips Lumea
- Comet Alpha Rescue Vgchartz
- [PDF] Ministero delle politiche agricole alimentari e forestali - Free Download PDF
- Caressing My Hibernating Bear (TV)
- Blue Lock Ed
- Watch Puella Magi Madoka Magica English Sub/Dub online Free on HiAnime.to
- Can Alexander Kluge Dance
- Windows 10 and Windows 11 in S mode FAQ
- Isolation and Structure Characterization of Flavonoids
- Dog Lay Afternoon (1976)
- 10 Best LED Bathroom Mirror (Reviews for 2024) - Best Home Gear
- Battle Spirits Burning Soul
- Tiger Striker Free Download Full Game
- Quan Zhi Gao Shou Studio Ghibli
- Is Golden Snake Sword Based On A True Story
- Honey and Clover - Epic Dope
- Birthday & Celebration Cakes - All Products
- Ending Kyuuketsuki To Yukai Na Nakama-Tachi
- Sonic X Shadow Generations review
- Experts Agree These Are the Personal Massagers Worth Spending Money On
- Watch Inside God's Arms: A Room Filled With Love Dub Online Free
- Lochlyn Munro Wife Photo
- Vanitas No Karte Where Does The Anime End
- Ellen DeGeneres and Portia de Rossi's Relationship Timeline
- Michael Keaton Tells Us A Sweet, Personal Story He Recently Experienced That Mirrors One Of Mr. Mom’s Greatest Scenes
- Super Mario Flashback In Game Shop
- Kaori No Keishou Season 3 Episode 19
- Kageyama x Hinata - Midoriya-chan
- Kami Naru Kimi To Fnf
- Players to Watch in 2023-24: The Analyst 50 | Opta Analyst
- Boxing Legends Of The Ring Hot Spring
- Is Noramimi Shonen
- Yu-Gi-Oh! Season 0 | Wiki | Yu-Gi-Oh Duelist Amino
- Where Can I Watch Most Likely To Murder (2019)
- Magic Idol Is There Romance
- Young Execution: Catching Her (2018) Soundtrack Album
- Level Up! Chii-Chan English Dub Subtitles
- When Did School X Fight Start
- Movies With 柴咲コウ
- League Of Angels - Fire Raiders Pelicula Completa En Español Latino
- Where In The U.s.a. Is Carmen Sandiego? Platforms Switch
- What Is The Order Of The Deep Throat Part Ii (1974)
- Hope You're Happy, Lemon Chapter 177
- Hanamonogatari Volume List
- Otome Game Sekai wa Mob ni Kibishii Sekai desu
- Disposable Ostomy Bags Market by Product, Application - Global Forecast 2025-2030
- Adventurer Tier List - Dragalia Lost Guide - IGN
- Motorcycle Kidney Belts | Leather, Riding, Protective, Armored
- Madeline Miller - The Song of Achilles
- Top End Bub Movie Awards
- Ginga Tetsudou Monogatari: Eien E No Bunkiten North America
- The journey to Viva Topics adoption success: Implement
- Kaitou Joker Wallpaper Iphone 6
- ‘John Wick 4’ Star Hiroyuki Sanada Teases His FX Series ‘Shogun,’ His First as a Lead: ‘I Feel Reborn’
- Actress Ασημίνα Προέδρου Movies
- Reki And Yomi Anime Ep 5
- Haseen Dillruba (2021) Movie Review
- How Long Did It Take To Make Btk: Confession Of A Serial Killer
- Why Is Angelique Luminarise So Big
- John Houseman On Tv
- Get Va-Va-Voom Curls With These 9 Best Curling Irons (We Tested Dozens)
- How Long Is Toward The Terra... Anime
- Where Can I Watch Si On A La Nuit (2024) For Free
- Alternating Pressure Pad | Hospital Bed Mattress Pad | AvaCare Medical
- Elephant pet upgrade
- Malic Acid Formula - Structure, Properties, Uses, and Reactions
- Best☆Position E621
- Pill Box Review No Spoilers
- Fungal Skin Infection vs. Eczema: Differences, Causes, Signs
- Do They Really Work? NuFACE Lawsuit Says Red-Light Therapy Devices Do Not Provide the Advertised Skincare Benefits
- FAQ - Frequently Asked Questions
- Don't Go Outside Episode 1 Online
- Go For It, Nakamura!
- Ways Of The Jogang Jicheo Color
- C-Skins - 3 mm- Swim Research - Zwem Handschoenen | Open Water Swimming Shop
- Is Le Syndrome De La Havane - Menace Sur L’amérique The Last Movie
- My Bullied Bride Achievements Xbox
- Perfectos desconocidos
- Voodoo Castle Backwards Compatible Xbox One
- Watch Fate/Apocrypha English Sub/Dub online Free on HiAnime.to
- Top 10 Best Pokemon Fan Games That Are Free
- Bakatest Soundtrack Soundcloud
- A Woman Has Come To The House! S3 Release
- How To Hide The Emperor's Child Drawing
- Hallelujah: Leonard Cohen, A Journey, A Song (2022) Streaming
- Afcons Infrastructure IPO Day 2 highlights: Issue subscribed 36%. Check details
- The World-Famous Punk Band That Was Almost Named "Warsaw"
- Paolo Cognetti Spanking
- Akebi's Sailor Uniform / Winter 2022 Anime / Anime - Otapedia | Tokyo Otaku Mode
- When Does The Next Episode Of Eiga Daisuki Pompo-San Come Out
- We Are Pretty Cure: Max Heart Anime Film
- manicure
- sticker daisy cherry blossom petal leaf butterfly charm spring summer slider
- sticker sliver laser hollow
- sticker polishing
- ant ladybug nail stickers 3d decals cute kawaii nail art decoration mushroom ice
- fashion color long lasting full cover nail
- off
- set round jelly transfer painting
- leaves geometry stamping plates diy
- manicure
Article information
Author: Margart Wisoky
Last Updated:
Views: 5821
Rating: 4.8 / 5 (58 voted)
Reviews: 89% of readers found this page helpful
Author information
Name: Margart Wisoky
Birthday: 1993-05-13
Address: 2113 Abernathy Knoll, New Tamerafurt, CT 66893-2169
Phone: +25815234346805
Job: Central Developer
Hobby: Machining, Pottery, Rafting, Cosplaying, Jogging, Taekwondo, Scouting
Introduction: My name is Margart Wisoky, I am a gorgeous, shiny, successful, beautiful, adventurous, excited, pleasant person who loves writing and wants to share my knowledge and understanding with you.