Author Message

RedCarDriver

us
Posts: 1211

Location: United States Arizona
Occupation: it's complicated... more complicated than my relationships
Age: 30
V$: 86310
#60585   2015-01-12 18:31          
# axlevest : 2.)In BB93's SLRR I have found a slight issue with the suspension, after setting it up to be full stance nation/cambergang/hellaflush/super cool my dad thinks it looks weird spec and saving the car, returning to it the wheels will have heaps more poke, then when repaired after driving it, they will return to being how I set it up before, any way to fix this?

For 2), make sure that all of your wheel javas have this in there somewhere:

	public void updatevariables()
	{
		super.updatevariables();
		setSlotPos( 1, new Vector3(f_offset/1000.0, 0, 0), null );
	}

It goes in the wheel java like this:
What this does: When you load a car from your saved game, or when you tune the wheel setup, it updates the wheel position where they're supposed to go. However, when you repair the car or when you load the car in the dealer, the wheels would reset to their stock position without this line of code. This line of code fixes that. I have it added into every adjustable rim in my game. Almost no modders do this, though.