WitPTracker AE Release 1.11 Available!

This new stand alone release based on the legendary War in the Pacific from 2 by 3 Games adds significant improvements and changes to enhance game play, improve realism, and increase historical accuracy. With dozens of new features, new art, and engine improvements, War in the Pacific: Admiral's Edition brings you the most realistic and immersive WWII Pacific Theater wargame ever!

Moderators: wdolson, MOD_War-in-the-Pacific-Admirals-Edition

User avatar
Encircled
Posts: 2097
Joined: Thu Dec 30, 2010 3:50 pm
Location: Northern England

RE: WitPTracker AE Release 1.9.2 Available!

Post by Encircled »

Sorry!

Basically, everything appears to be set up correctly to run, but after I double click on the witptracker.bat, I get the message "Java SE has stopped working, Windows is searching for the problem".

It then comes up on the DOS "Press any key to continue", I press the key and it closes
floydg
Posts: 2060
Joined: Sat Jun 26, 2004 10:08 pm
Location: Middletown, NJ

RE: WitPTracker AE Release 1.9.2 Available!

Post by floydg »

What version of java are you running?

From a DOS window, type "java -version".

Delete the trackerdb.* files.
Copy the pwsdll.dll file from the game folder to the WitPTracker folder.
Try running the WitPTracker.bat again.
User avatar
Encircled
Posts: 2097
Joined: Thu Dec 30, 2010 3:50 pm
Location: Northern England

RE: WitPTracker AE Release 1.9.2 Available!

Post by Encircled »

Java 6

I used to be on Java 7, but changed it to the one identified by N12345667 (Apologies, can't remember his exact log in details) on this.

Now I'm just completely confused. I have Java according to my program list


Image
Attachments
Java.jpg
Java.jpg (253.42 KiB) Viewed 235 times
floydg
Posts: 2060
Joined: Sat Jun 26, 2004 10:08 pm
Location: Middletown, NJ

RE: WitPTracker AE Release 1.9.2 Available!

Post by floydg »

can you humor me and run the command? In case you have multiple Java installs, you'd need to get the batch file to point to the right Java.
Delete the trackerdb.* files.
Copy the pwsdll.dll file from the game folder to the WitPTracker folder.
Try running the WitPTracker.bat again.
User avatar
Encircled
Posts: 2097
Joined: Thu Dec 30, 2010 3:50 pm
Location: Northern England

RE: WitPTracker AE Release 1.9.2 Available!

Post by Encircled »

Just in case you missed the above

My computer incompetence is really beginning to annoy me at the moment!



Image
Attachments
Java.jpg
Java.jpg (253.42 KiB) Viewed 235 times
User avatar
Encircled
Posts: 2097
Joined: Thu Dec 30, 2010 3:50 pm
Location: Northern England

RE: WitPTracker AE Release 1.9.2 Available!

Post by Encircled »

"java -Xms384m -Xmx512m -jar "WitPTracker.jar"
pause"

This is what the tracker batch file is currently pointed to btw
User avatar
n01487477
Posts: 4759
Joined: Tue Feb 21, 2006 12:00 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by n01487477 »

ORIGINAL: Encircled

"java -Xms384m -Xmx512m -jar "WitPTracker.jar"
pause"

This is what the tracker batch file is currently pointed to btw
Yes, it needs to look like this ...
On a win7 / 8 machine
"C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xms384m -Xmx512m -jar "WitPTracker.jar" nomap

Also, my name is Damian ;-)
User avatar
Encircled
Posts: 2097
Joined: Thu Dec 30, 2010 3:50 pm
Location: Northern England

RE: WitPTracker AE Release 1.9.2 Available!

Post by Encircled »

Damian, a thousand apologies for my continued inepitude, but I think I must be doing something wrong with my batch file

I'm editing the batch file to add the command you have given me, and I get this.

Image
Attachments
tracker.jpg
tracker.jpg (114.21 KiB) Viewed 235 times
User avatar
n01487477
Posts: 4759
Joined: Tue Feb 21, 2006 12:00 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by n01487477 »

ORIGINAL: Encircled

Damian, a thousand apologies for my continued inepitude, but I think I must be doing something wrong with my batch file

I'm editing the batch file to add the command you have given me, and I get this.
Sometimes things are fiddly...

In your batch have "...java.exe" you need to include the ".exe" to java.
If there are any trackerdb.* files delete them and try again mate.

You are very close to the solution IMHO ;-)

Oh - also if you are using the beta; copy the pwsdll.dll from the beta2 folder to the tracker folder ;-)

[edit] Also, off to bed so I hope that good news comes by morning ...
User avatar
Encircled
Posts: 2097
Joined: Thu Dec 30, 2010 3:50 pm
Location: Northern England

RE: WitPTracker AE Release 1.9.2 Available!

Post by Encircled »

Thanks for your continued advice and help, but I'm officially a bit lost.

Which bit do I need to change to get the batch file to point correctly to Java?

Image
Attachments
tracker.jpg
tracker.jpg (175.56 KiB) Viewed 235 times
User avatar
witpqs
Posts: 26376
Joined: Mon Oct 04, 2004 7:48 pm
Location: Argleton

RE: WitPTracker AE Release 1.9.2 Available!

Post by witpqs »

To my eye it looks like you are forgetting to put in one of the quotation marks. Notice that the error is that 'C:\Program' is not recognized. That is because you have spaces with the path (and/or file) specification. By default the space indicates that is where it ends, so you need to enclose the whole thing within quotation marks so that Windows knows that the whole thing including any spaces is part of the path (and/or file name).

When I look at post # 4568 it looks like you forgot the first " (double quotation mark).

Should be this:

"C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xms384m -Xmx512m -jar "WitPTracker.jar" nomap

But you have this:

C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xms384m -Xmx512m -jar "WitPTracker.jar" nomap

BTW, that presumes that C:\Program Files (x86)\Java\jre6\bin\ is actually the place where the Java 6 java.exe is located, you will have to adjust it if it is not.

User avatar
Encircled
Posts: 2097
Joined: Thu Dec 30, 2010 3:50 pm
Location: Northern England

RE: WitPTracker AE Release 1.9.2 Available!

Post by Encircled »

I know this is going to be hard to believe, but I'M IN!!!!!!!!!

Thanks for all your help guys!
User avatar
Crazypantoufle
Posts: 33
Joined: Tue Jul 30, 2013 10:11 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by Crazypantoufle »

Hello everyone!

I just installed witp ae tracker, as i began a GC.
Firts I had the same path problem (and by the way my path is "\Java\bin\java.exe", i don't have \jre6\, is that normal?), but i corrected it in the .bat file.

Then now it's telling me "Java platform SE binary ceased working", then tracker just close.

I don't know anything about computer, so i have to discretely and gentlemanly ask "HEEELP MEEEEE!"[&o] to anyone who can understand this kind of problem.

I have win 7, 64 bits.

I installed C++ vcredist_x86.exe and the latest java as mentionned in the installer guide.

User avatar
n01487477
Posts: 4759
Joined: Tue Feb 21, 2006 12:00 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by n01487477 »

ORIGINAL: Crazypantoufle

Hello everyone!

I just installed witp ae tracker, as i began a GC.
Firts I had the same path problem (and by the way my path is "\Java\bin\java.exe", i don't have \jre6\, is that normal?), but i corrected it in the .bat file.

Then now it's telling me "Java platform SE binary ceased working", then tracker just close.

I don't know anything about computer, so i have to discretely and gentlemanly ask "HEEELP MEEEEE!"[&o] to anyone who can understand this kind of problem.

I have win 7, 64 bits.

I installed C++ vcredist_x86.exe and the latest java as mentionned in the installer guide.

You need java 6v45. Java 7 doesn't work.
Install this ...
https://dl.dropboxusercontent.com/u/176 ... s-i586.exe
Then path it like the previous posts on this page ;-)
User avatar
Crazypantoufle
Posts: 33
Joined: Tue Jul 30, 2013 10:11 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by Crazypantoufle »

Thank you Damian, you were right about the version of Java.[:)]

I've downloaded this version, so now let's procede to problem n°3![:D]
What all these "Unknown Source" mean?[&:]
Attachments
bugtracker.jpg
bugtracker.jpg (228.16 KiB) Viewed 242 times
User avatar
n01487477
Posts: 4759
Joined: Tue Feb 21, 2006 12:00 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by n01487477 »

ORIGINAL: Crazypantoufle

Thank you Damian, you were right about the version of Java.[:)]

I've downloaded this version, so now let's procede to problem n°3![:D]
What all these "Unknown Source" mean?[&:]
It means that you haven't copied the pwsdll.dll from the beta2 folder into the tracker folder. As you are using the beta version of witp-ae, you need to use this dll.

Delete all trackerdb.* files in tracker and run again after copying the file.
User avatar
Crazypantoufle
Posts: 33
Joined: Tue Jul 30, 2013 10:11 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by Crazypantoufle »

Thank you Damian! It WORKS, my friend![&o]

Only one thing: before entering into the tracker, it says "WARNING: Could not initialize SigInt information for first turn".

My save is in the first turn of the GC. Is this normal?
User avatar
n01487477
Posts: 4759
Joined: Tue Feb 21, 2006 12:00 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by n01487477 »

ORIGINAL: Crazypantoufle

Thank you Damian! It WORKS, my friend![&o]

Only one thing: before entering into the tracker, it says "WARNING: Could not initialize SigInt information for first turn".

My save is in the first turn of the GC. Is this normal?
Yes mate, as it is the first turn there is no sigInt data nor alerts. Remember to load the region definitions and you'll be good to go ;-)

Enjoy!
User avatar
Crazypantoufle
Posts: 33
Joined: Tue Jul 30, 2013 10:11 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by Crazypantoufle »

Load a new region definition? How do i do that?
Do i have to change the file from the game? And what does it change?

Sorry for bothering you with all these questions, but i really am a newbie in both witp ae and computer programs.[:(]
User avatar
n01487477
Posts: 4759
Joined: Tue Feb 21, 2006 12:00 am

RE: WitPTracker AE Release 1.9.2 Available!

Post by n01487477 »

ORIGINAL: Crazypantoufle

Load a new region definition? How do i do that?
Do i have to change the file from the game? And what does it change?

Sorry for bothering you with all these questions, but i really am a newbie in both witp ae and computer programs.[:(]
It's in Tracker so that you can see things happening in different regions. Unfortunately, our web site is down at present as there seems to be a google sites problem.

To do it

File -> Import Base file definitions
Open the region-mappings folder
I recommend using Kull or Nomads def's.

Hope this helps.
Post Reply

Return to “War in the Pacific: Admiral's Edition”