
https://www.matrixgames.com/forums/view ... a#p5019309
It's if you don't want to upgrade to new map yet and want to use scenarios made earlier.
Moderators: wdolson, MOD_War-in-the-Pacific-Admirals-Edition
Thanks much. That was my problem, the autorun.exe. I appreciate the help.BBfanboy wrote: Fri Jun 10, 2022 4:15 pmThe other possibility is that the downloaded game is not installing the correct shortcut icon on your desktop. As put out by Matrix, the original game puts an icon on your desktop that points to a Menu screen (the autorun.exe pointer). This is not the game - you need to create one that points to War In The Pacific Admiral Edition.exe .amhendrick wrote: Fri Jun 10, 2022 12:26 pm I just ordered WitP: AE since it was on sale. I've tried the SeeBee app, but I get an error: "Unable to find PW data!!!"
Unfortunately that does not help us here, as the SeaBee requires a mandatory update check before it will launch. The update site is down, so SeaBee won't launch as it cannot continue past the mandatory update to nowhere. I have been unsuccessful getting ahold of Korvar.BBfanboy wrote: Thu Jun 29, 2023 5:24 pm When downloading new software I try to get it in its compressed form (i.e. zipped instead of having it extract and self install automatically. Then I copy the zipped file to another device/cloud/offline storage so if I need it again and the original download site is not active, I can get it. I did that with WITP-AE's original game file.
Absolutely a good point....GPTrugrit wrote: Tue Jul 04, 2023 10:37 am It is important to note that you don’t need SeaBee Alpha to
configure the performance switches.
https://www.matrixgames.com/forums/view ... 7#p4731407
You don’t want any new players that show up to think that
you can’t run the game properly without having SeaBee Alpha.
True but SeaBee does make it a lot easier which is why I usually suggested it.btd64 wrote: Tue Jul 04, 2023 2:24 pmAbsolutely a good point....GPTrugrit wrote: Tue Jul 04, 2023 10:37 am It is important to note that you don’t need SeaBee Alpha to
configure the performance switches.
https://www.matrixgames.com/forums/view ... 7#p4731407
You don’t want any new players that show up to think that
you can’t run the game properly without having SeaBee Alpha.
Code: Select all
@echo off
REM Get the current date
for /f "tokens=2 delims==" %%G in ('wmic os get localdatetime /format:list') do set "dt=%%G"
REM Extract the year, month and day from the current date
set "year=%dt:~0,4%"
set "month=%dt:~4,2%"
set "day=%dt:~6,2%"
REM create the data.sb file
echo %year%-%month%-%day%> bin/data.sb
(echo 1) >> bin/data.sb
start SeaBee.exe
Marc wrote: Sat Jul 08, 2023 11:10 pm Based and thanks to the solution by Jochen here is what I found out and what you can do to make SeaBee work without a problem.
Seabee saves in the file bin\data.sb when it looked the last time for updates and if you accepted the EULA.
Idea:We create this file every time we start SeaBee.
Solution: Just create a text file in the program directory where the SeaBee.exe is and name go.cmd (for example).
Open this file with notepad and paste the following code in there.
Start this every time you want to use SeaBee and it just works fine.
Code: Select all
@echo off REM Get the current date for /f "tokens=2 delims==" %%G in ('wmic os get localdatetime /format:list') do set "dt=%%G" REM Extract the year, month and day from the current date set "year=%dt:~0,4%" set "month=%dt:~4,2%" set "day=%dt:~6,2%" REM create the data.sb file echo %year%-%month%-%day%> bin/data.sb (echo 1) >> bin/data.sb start SeaBee.exe
Btw. half the credit for this code belongs to ChatGPT.
But ChatGPT had no solution for adding a 1 without a trailing space. But google knew that.![]()