Author Message

yurisminator

dk
Posts: 717

Location: Denmark
Occupation: Mechanic
Age: 34
V$: hell no
#1   2014-03-24 16:50          
I have Mister sirs running gear, and the beta/open version.

And i figured out how to get more negative camber, but i have no idea how to get lower, none of the parameters in the script seem to match what i can find in the game.

Can anyone point out what parameter i need to re value?

Thanks in advance :p


Powered by GTX 1080 TI

BigBoss93:
Yes both of you stop being pricks and praise our god Jesus Christ and our president Yurisminator

Nismo_v7

it
Posts: 123
http://www.facebook.com/StreetLeg...
Location: Italy Sanremo
Occupation: SLRRItalia Full time Admin :)
Age: 27
V$:
#2   2014-03-24 17:00          
Edit the springs ingame to get lower :)

Bigg Boss93

it
Posts: 4024
http://rdbl.co/1Hmg5XL
Location: Italy - Sardegna
Occupation: Swimming out of the shit pool
Age: 30
V$: More than you can afford, pal.
#3   2014-03-24 17:25          
You have to:
A. Listen to Lil'Jon
B. Use screwdriver tool on springs
With so much drama in the V-S-T, it's kinda hard being Bigg B-O-double-S-ninetythree B)

FJ

cy
Posts: 716
http://vstanced.com
Location: Cyprus Limassol
Occupation: I'm a student.
Age: 24
V$:
#4   2014-03-24 17:34          
If you want to get high again use weed. (Or the scredriver tool on springs)
Ehm...mmm I like Forza! (and BeamNG)

Bigg Boss93

it
Posts: 4024
http://rdbl.co/1Hmg5XL
Location: Italy - Sardegna
Occupation: Swimming out of the shit pool
Age: 30
V$: More than you can afford, pal.
#5   2014-03-24 17:40          
also, you obviously need to retire it from your local hyundai dealer

With so much drama in the V-S-T, it's kinda hard being Bigg B-O-double-S-ninetythree B)

yurisminator

dk
Posts: 717

Location: Denmark
Occupation: Mechanic
Age: 34
V$: hell no
#6   2014-03-24 17:46          
lol, i want to get even lower then what the springs allow :p

the one with the lowest settings is 5 inches, and on the S14 mod i got off here there is so much wheelgap :p

Added 14 seconds later:

# Bigg Boss93 : also, you obviously need to retire it from your local hyundai dealer

epic xD hahahaha


Powered by GTX 1080 TI

BigBoss93:
Yes both of you stop being pricks and praise our god Jesus Christ and our president Yurisminator

Bigg Boss93

it
Posts: 4024
http://rdbl.co/1Hmg5XL
Location: Italy - Sardegna
Occupation: Swimming out of the shit pool
Age: 30
V$: More than you can afford, pal.
#7   2014-03-24 17:49          
i'll send you my Java for maximum adjustability suspension from mr.sir pack, it goes from 0.5 to 17 inch :D
With so much drama in the V-S-T, it's kinda hard being Bigg B-O-double-S-ninetythree B)

yurisminator

dk
Posts: 717

Location: Denmark
Occupation: Mechanic
Age: 34
V$: hell no
#8   2014-03-24 18:31          
Good sir, please do :p


Powered by GTX 1080 TI

BigBoss93:
Yes both of you stop being pricks and praise our god Jesus Christ and our president Yurisminator

FJ

cy
Posts: 716
http://vstanced.com
Location: Cyprus Limassol
Occupation: I'm a student.
Age: 24
V$:
#9   2014-03-24 18:36          
Mind giving the java to me?
Ehm...mmm I like Forza! (and BeamNG)

yurisminator

dk
Posts: 717

Location: Denmark
Occupation: Mechanic
Age: 34
V$: hell no
#10   2014-03-24 19:25          


yay finally figured it out :p


Powered by GTX 1080 TI

BigBoss93:
Yes both of you stop being pricks and praise our god Jesus Christ and our president Yurisminator

Bigg Boss93

it
Posts: 4024
http://rdbl.co/1Hmg5XL
Location: Italy - Sardegna
Occupation: Swimming out of the shit pool
Age: 30
V$: More than you can afford, pal.
#11   2014-03-24 19:54          
With so much drama in the V-S-T, it's kinda hard being Bigg B-O-double-S-ninetythree B)

yurisminator

dk
Posts: 717

Location: Denmark
Occupation: Mechanic
Age: 34
V$: hell no
#12   2014-03-24 20:06          
i edited the java script for the springs

red is the parameters i used to get low.

// Author: MisterSir
// Developed: 2009
// File: HKS_Hipermax_III_Sport_spring.java

package java.game.parts.MrSir_Running_Gear.springs;

import java.io.*;
import java.game.*;
import java.game.parts.*;
import java.game.parts.MrSir_Running_Gear.springs.*;

public class HKS_Hipermax_III_Sport_spring extends MrSir_Spring{
public HKS_Hipermax_III_Sport_spring( int id ){
super( id );
int wheelID = getWheelID();
setParameters(wheelID);
restlength = Inch2Meter(length);
minlength = Inch2Meter(length-1.5);
maxlength = Inch2Meter(length+1.5);
brand_prestige_factor = 2.55;
setParentType(3459);
name_prefix = "HKS Hipermax III Sport";
additionalDescription = "This spring is ment to fit with the HKS Hipermax III Sport shock absorbers. It is ride height adjustable and good for racing applications.";
calcStuffs();
}

public void updatevariables(){
int i = getWheelID();
if (i==0){
setRenderType(parentType + 3459);
}else if (i==1){
setRenderType(parentType + 3459);
}else if (i==2){
setRenderType(parentType + 3460);
}else if (i==3){
setRenderType(parentType + 3460);
}
updateParameters(i);
super.updatevariables();
}

public void setParameters(int i){
if (i<=1){
designedMassOnWheel = getMessOnWheel(mass, 50.0, WHL_FRONT);
length = 7.5;
setAdjustability(7.0, 7.0, length);
force = kgfPmm2NPm(14.5);
}else{
designedMassOnWheel = getMessOnWheel(mass, 50.0, WHL_REAR);
length = 7.7;
setAdjustability(7.0, 7.0, length);
force = kgfPmm2NPm(12.0);
}
setSide(i);
}

public void updateParameters(int i){
if (i<=1){
designedMassOnWheel = getMessOnWheel(mass, 50.0, WHL_FRONT);
setAdjustability(7.0, 7.0, 7.5);
force = kgfPmm2NPm(14.5);
}else{
designedMassOnWheel = getMessOnWheel(mass, 50.0, WHL_REAR);
default_length = 7.7;
setAdjustability(7.0, 7.0, 7.7);
force = kgfPmm2NPm(12.0);
}
setSide(i);
calcStuffs();
}
}


Powered by GTX 1080 TI

BigBoss93:
Yes both of you stop being pricks and praise our god Jesus Christ and our president Yurisminator

FJ

cy
Posts: 716
http://vstanced.com
Location: Cyprus Limassol
Occupation: I'm a student.
Age: 24
V$:
#13   2014-03-24 20:11          
thanks marco,i got tit :deadhorse:
Ehm...mmm I like Forza! (and BeamNG)

Remzi1996

hr
Posts: 56

Location: Croatia
Occupation: School...
Age: 27
V$:
#14   2014-03-24 20:18          
# Bigg Boss93 : GET TIT HERE :wiseman:

my suspension is same as before, i dont know why

kkilla305

us
Posts: 117
http://SFLDrifters.com
Location: United States Miami, Florida
Occupation: Auto technician
Age: 30
V$:
#15   2014-03-26 19:55          
# Remzi1996 : my suspension is same as before, i dont know why

His fix only applies to the Koni springs.