I'm a big computer noob myself. Do like me : print the post and make one step at a time, and put a big pencil mark after you've done it.
1/ You have two java links... download and install both on your computer (each time, chose the version for windows offline).
2/ Make sure the converter is installed and note the path (fot example C:\Program Files\Converter, where "Converter" is the name of the folder in which you put the converter)
3/ In the Start menu, click on "run", type "cmd" and press "enter".
You should have a new black window with :
Code:
Microsoft Windows XP [version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\Gilles>
type "echo %path%". If all is correct, you should get :
Code:
Microsoft Windows XP [version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\Gilles>echo %path%
C:\Program Files\Java\jdk1.5.0_07\bin
C:\Documents and Settings\Gilles>
If you don't get the line "C:\Program Files\Java\jdk1.5.0_07\bin" but something else... then close the cmd window, and go in
> start menu
> control panel
> system
> advanced
> environment variables
Among the variables, you should see "Path". Highlight it and click on "Edit".
Type "C:\Program Files\Java\jdk1.5.0_07\bin".
Restart the command prompt window (you
must have closed the previous one). And reverify with the command "echo %path%".
4/ Lead the command prompt to your converter file. That means that you must tell him where to find it. If the folder is in c:\Program Files\Converter, in the command prompt, type "cd c:\program files\converter".
Example :
Code:
Microsoft Windows XP [version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\Gilles>cd c:\program files\converter
C:\Program Files\Converter>
type the following line : "javac -cp . *.java". Like in the example, you should just get a new command line :
Code:
C:\Program Files\Converter>javac -cp . *.java
C:\Program Files\Converter>
If this is what you get, then your converter is ready to go.
Each time, you will use the converter, start a command prompt window. Lead the prompt to your converter folder. And type the following kind of command line :
Code:
java -cp . Converter [ck save filename] [eu2 scenario filename].
If you want it to select the save game in the CK save folder and to put the converted game in the EU2 scenario folder, type a line like this :
[code
java -cp . Converter "c:\Crusader_Kings\scenarios\save games\Duchy of Apulia_1292_June_8.eug" "c:\Europa_Universalis_2\Scenarios\Apulia-1292-test.eug"
[/code]
Hope this help....