Author Message

KasmanPWT

id
Posts: 35

Location: Indonesia (not Poland)
Occupation: Doing random stuff
Age:
V$: wat?
#1   2015-09-24 11:49          
So yesterday i download a Toyota 2JZ-GTE Engine mod, i try it and the engine is working great!, but the only thing that i don't like is the Greddy Turbo. The turbo looks like only have 3.000-4.000 Optimum Range. So i need to edit the Turbo Java, but i never find it, i has search in script/src but the folder is empty. So how i make turbo java.
Thanks
Sorry for my Bad English

This post was edited by KasmanPWT (2015-09-24 11:57, ago)
Poor Guy that can't buy Photoshop.....

tomturbo5

hr
Posts: 29

Location: Croatia
Occupation:
Age:
V$:
#2   2015-09-24 12:01          
you can try like i do on blind,open java from other cars turbo and then just change names in java to fit your 2jz but copy the java dont just take it from other vehicle,good luck its hard.

ijdevil

us
Posts: 106
http://facebook.com/Iijdevil
Location: United States
Occupation:
Age: 37
V$:
#3   2015-10-02 19:19          
I do it all the time....Just use the turbo java from another mod modify to what you want and rename the file and names in the file..GOOD TO GO! Good Luck

KasmanPWT

id
Posts: 35

Location: Indonesia (not Poland)
Occupation: Doing random stuff
Age:
V$: wat?
#4   2015-10-20 13:24          
Thanks for helping but i got error : !syntax error in file
parts\engines\Toyota_JZGTE\script\tune\src\turbo_greddy.java at line 34
How i fix this?


The java =

package java.game.parts.engines.Toyota_JZGTE;

import java.util.*;
import java.util.resource.*;
import java.game.*;
import java.game.parts.*;
import java.game.parts.enginepart.*;
import java.game.parts.enginepart.airfueldeliverysystem.charger.*;


public class turbo_greddy extends TurboCharger
{
public turbo_greddy( int id )
{
super( id );
name = "GReddy Single Turbo Conversion";
description = "";
brand_new_prestige_value = 109.30;

value = tHUF2USD(635.000);

calculateOptandRange (1000.0, 12000.0);
P_turbo_max = 10.0;
default_P_turbo_waste = 1.25;
P_turbo_waste = 10.0;

max_waste = 10.0;
min_waste = 0.75;
}

public void updatevariables()
{
setMaxWear(kmToMaxWear(120000.0));
}
Poor Guy that can't buy Photoshop.....

NoahC

us
Posts: 162

Location: United States
Occupation: why did I make my name this it's horrible
Age: 23
V$: n/a
#5   2015-10-20 13:50          
The game is expecting the default settings... I'm not sure how to fix it, just letting you know
ha

tomturbo5

hr
Posts: 29

Location: Croatia
Occupation:
Age:
V$:
#6   2015-10-20 14:06          
same problem with my g60 turbo conversion,game chrashes :(

adnan54

br
Posts: 289

Location: Brazil
Occupation: student
Age: 24
V$:
#7   2015-10-20 15:03          
Try this one:

package java.game.parts.engines.Toyota_JZGTE;

import java.util.*;
import java.util.resource.*;
import java.game.*;
import java.game.parts.*;
import java.game.parts.enginepart.*;
import java.game.parts.enginepart.airfueldeliverysystem.charger.*;


public class turbo_greddy extends TurboCharger
{
	public turbo_greddy( int id )
	{
		super( id );
		name = "GReddy Single Turbo Conversion";
		description = "";
		brand_new_prestige_value = 109.30;

		value = tHUF2USD(635.000);

		calculateOptandRange (1000.0, 12000.0);
		P_turbo_max	= 10.0;
		default_P_turbo_waste	= 1.25;
		P_turbo_waste	= 10.0;

		max_waste	= 10.0;
		min_waste	= 0.75;
	}
}
Something wrong is not right.

KasmanPWT

id
Posts: 35

Location: Indonesia (not Poland)
Occupation: Doing random stuff
Age:
V$: wat?
#8   2015-10-21 06:18          
It's working now :D Thanks adnan54
Poor Guy that can't buy Photoshop.....