![]() |
SUBSIM: The Web's #1 resource for all submarine & naval simulations since 1997 |
![]() |
#61 |
Sailor man
![]() Join Date: Dec 2006
Posts: 47
Downloads: 36
Uploads: 0
|
![]()
Anyone have the before/after pictures from the OP? I'd love to be able to see those instead of patching my EXE and loading game 100 times.
![]() |
![]() |
![]() |
![]() |
#62 |
Torpedoman
![]() Join Date: Nov 2010
Location: Zielona Góra, Poland
Posts: 116
Downloads: 72
Uploads: 0
|
![]()
sh3_g.exe is your true sh3.exe file. Archive uplay small loader sh3.exe. Next rename your file to sh3.exe and repeat execute patch. Then if your game not launch try reverse rename sh3.exe to sh3_g.exe and restore uplay small loader sh3.exe.
|
![]() |
![]() |
![]() |
#63 |
Sparky
![]() Join Date: Mar 2017
Posts: 155
Downloads: 112
Uploads: 1
|
![]()
would it be possible to enable render accurate shoreline as you could do in mission editor?
|
![]() |
![]() |
![]() |
#64 |
Torpedoman
![]() Join Date: Nov 2010
Location: Zielona Góra, Poland
Posts: 116
Downloads: 72
Uploads: 0
|
![]()
I think that would not even be advisable. What would be the difficulty of navigating by GPS in a game reflecting the years 1939-1945? This is why the map is not so accurate that sometimes you have to pick up the periscope and sometimes get into a sandbar and combine how to get out of it. And when you turn on the external view, you have coastal navigation.
|
![]() |
![]() |
![]() |
#65 |
Commander
![]() Join Date: Apr 2013
Location: Buenos Aires
Posts: 456
Downloads: 159
Uploads: 0
|
![]()
Is describe a patch to enable a fix for real navigation or even fur just non contract in map for hydro contacts in the attack map even with no contract switch on.
Hydro operator is a but crappy in sh3, you don't know how many contractors reads, taking ships in a convoy should be manual and take 4 bearing meeting could take so long to do manual, also taking in the chance of course is a pain. At first I suppose thats not possible but I world like a qualified answer, another problem in game is that radar warning show up with direction when they should not, and that make in the same way hydro contract does, so just replace all the siluettes of ships is no right solution.. There's any chance? mybe just by alpha layer getting 00 instead of FF, idont know the code but thats a posible way if they exist in hexa.
__________________
Having a HARD TIME with CONSOLIDATE GRANMA MOD... Last edited by Aquelarrefox; 05-08-20 at 09:00 AM. |
![]() |
![]() |
![]() |
#66 |
Watch
![]() Join Date: May 2009
Location: Holland
Posts: 28
Downloads: 76
Uploads: 0
|
![]()
Hi all,
When trying to install this patch, the binpatch.exe will not start, giving the error: "the application was unable to start correctly 0xc00007b", which seems to me a vague Windows compatibility error. I have the msvcp100 and msvcr100 .dll files in both my sys32 as my SH3 install folder if that matters. I am running Windows 10 and if anyone has any ideas or has encountered this issue (or has a way for me to patch the few bits for the nav/attack map scale manually) I would love to hear it. Thanks in advance, Nicolai |
![]() |
![]() |
![]() |
#67 | |
Commodore
![]() Join Date: Aug 2008
Location: U-30
Posts: 600
Downloads: 917
Uploads: 12
|
![]() Quote:
![]() KUrtz
__________________
Schleichfahrt Rudder: GWX KC.vQ https://www.mediafire.com/file/taz1r...XKC.vQ.7z/file ![]() |
|
![]() |
![]() |
![]() |
#68 |
Seaman
![]() Join Date: Jul 2020
Location: Greece
Posts: 39
Downloads: 140
Uploads: 0
|
![]()
I am having the following trouble when trying to patch the .exe
|
![]() |
![]() |
![]() |
#69 | |
Swabbie
![]() Join Date: Jan 2014
Posts: 13
Downloads: 44
Uploads: 0
|
![]() Quote:
EDIT: I fixed this by installing every visual c++ package i could find 2005-2015. Not sure which one did the trick but it worked... Last edited by j4ckkn1fe; 09-13-20 at 02:48 PM. |
|
![]() |
![]() |
![]() |
#70 |
Bilge Rat
![]() Join Date: Nov 2020
Posts: 1
Downloads: 25
Uploads: 0
|
![]()
Hi!
Thank you for this amazing tool. I get this error message when trying to run TychoSh3Patch.bat: "'binpatch' is not recognized as an internal or external command, operable program or batch file. Fail." I'm on windows 10. Fix: Copied the folder "TychoSh3Patch_v3" to "C:" then edited "TychoSh3Patch.bat" file to look like this: @echo off cd C:\TychoSh3Patch_v3\WorkFolder binpatch apply sh3.exe TychoSh3Patch.map echo. if errorlevel 1 goto ERROR echo Success. goto END :ERROR echo Fail. :END echo. pause Last edited by Phrosperatus; 11-14-20 at 06:51 PM. |
![]() |
![]() |
![]() |
#71 | |
中国水兵
![]() Join Date: Jun 2010
Location: Germany
Posts: 270
Downloads: 3
Uploads: 1
|
![]()
Tycho SH3- and Chrono-Patches use "binpatch.exe".
It requires special Visual C++ Redistributable Package installed. This file is not necessarily needed or can be replaced by another "binpatch.exe". The already h.sie/stiebler patched sh3.exe can be patched direct with a HEX-Editor by hand. All what is needed is in the *.map-file. Its easy to read. Another way is replacing binpatch.exe. There are lots of Sources around the web. The simplest may be this: https://ftp.nice.ch/pub/next/unix/ha...inpatch.c.html This can be easily compiled for example with MS "Visual C++ Toolkit 2003". As this source is very easy, and not direct compatible with "Tycho's"-binpatch.exe, some changes has to be made: ( the original line is commented out by // ) //if ((input_file = fopen(input_file_name, "r+")) == NULL) { if ((input_file = fopen(input_file_name, "r+b")) == NULL) { //count = fscanf(diff_file, "%lu %o %o", &offset, &c1, &c2); count = fscanf(diff_file, "%lx %x %x", &offset, &c1, &c2); //offset--; The *.map-file must be changed to contain only the Address NumberOriginal NumberPatch without any Comments. Like this: "TychoSh3Patch_new.map" Quote:
binpatch -f TychoSh3Patch_new.map sh3.exe Please note: due to its simpleness-behavior the sh3.exe is overwritten. A Copy has to be keep safe. Greetings. |
|
![]() |
![]() |
![]() |
#72 |
Sonar Guy
![]() |
![]()
Hello, people!
How are you after this unusual year? I, don't stop working, only 5 days vacation for the whole year. And, started to gather some home alcoholic habits... I think, it is time for me to come back to SH3. Well, it will be a slow process, I will slowly gather interest over some months, at now I even don't have SH3 on my new computer. For beginning let's start with new patcher for my sh3.exe patches. This one don't want to work on my new computer with Win10. Like Hebe Vollmaus say, it need some ****. I already found and will make a new one, more easier and user friendly. Give me a week. Also I want to apologize to everyone who has written to me a PM in the last two years and I don't answered. I was not here, will read these the next days. There is no point to answering now, probably the meaning has expired. Happy New Year to you all!
__________________
If you ride like lightning, you're gonna crash like thunder. |
![]() |
![]() |
![]() |
#73 |
Krusty Krab
Join Date: Mar 2002
Location: Decks awash in the North Atlantic
Posts: 1,452
Downloads: 493
Uploads: 0
|
![]()
Welcome back.
![]() Good hunting, FUBAR295
__________________
Good judgment comes from experience. Unfortunately, the experience usually comes from bad judgment. |
![]() |
![]() |
![]() |
#74 | |
Sea Lord
![]() Join Date: Mar 2007
Location: La Paz, Bolivia
Posts: 1,965
Downloads: 277
Uploads: 51
|
![]() Quote:
Welcome back, Tycho!!! ![]() Good to see you around! ![]() CapZap
__________________
![]() |
|
![]() |
![]() |
![]() |
#75 |
中国水兵
![]() Join Date: Jun 2010
Location: Germany
Posts: 270
Downloads: 3
Uploads: 1
|
![]()
Nice to read you.
I'm always interested in all your output or teaching lessons. Greetings. |
![]() |
![]() |
![]() |
|
|