SUBSIM Radio Room Forums



SUBSIM: The Web's #1 resource for all submarine & naval simulations since 1997

Go Back   SUBSIM Radio Room Forums > Current crop of subsims & naval games > UBOAT
Forget password? Reset here

Reply
 
Thread Tools Display Modes
Old 06-17-20, 03:38 AM   #46
Ruby2000
Engineer
 
Join Date: Sep 2005
Posts: 210
Downloads: 71
Uploads: 0
Default

HI,


NP.:-)

If you hide the mission objectives, the green dot will also disappear. ;-)
And with the middle mouse button its possible to activate/deactivate TC.



Cheers Ruby
Ruby2000 is offline   Reply With Quote
Old 07-10-20, 11:16 AM   #47
Ruby2000
Engineer
 
Join Date: Sep 2005
Posts: 210
Downloads: 71
Uploads: 0
Default

HI,

The manual for the Torpedovorhalterechner T. Vh. Re. S3 (TDC - MOD) is
online. An English and a German version.

Furthermore we would like to thank the community member DERSTOSSTRUPP, who provided us with historical information that we were allowed to add to the manual. Many thanks for this!

Enjoy reading!

https://steamcommunity.com/sharedfil...?id=2161212854

Cheers Ruby
Ruby2000 is offline   Reply With Quote
Old 07-10-20, 01:52 PM   #48
gavsboat
Nub
 
Join Date: Aug 2019
Location: North Lincolnshire
Posts: 3
Downloads: 15
Uploads: 0
Default

Was curious if theres a download source for the mod that exists outside of steam workshop for those of us who have the game on GOG?
gavsboat is offline   Reply With Quote
Old 07-10-20, 01:55 PM   #49
Aktungbby
Gefallen Engel U-666
 
Aktungbby's Avatar
 
Join Date: Jul 2013
Location: On a tilted, overheated, overpopulated spinning mudball on Collision course with Andromeda Galaxy
Posts: 27,709
Downloads: 22
Uploads: 0


Default welcome aboard!

gavsboat!
__________________

"Only two things are infinite; The Universe and human squirrelyness; and I'm not too sure about the Universe"
Aktungbby is online   Reply With Quote
Old 07-10-20, 02:15 PM   #50
gavsboat
Nub
 
Join Date: Aug 2019
Location: North Lincolnshire
Posts: 3
Downloads: 15
Uploads: 0
Default

Ahoy hoy
gavsboat is offline   Reply With Quote
Old 07-10-20, 02:18 PM   #51
telephono
Swabbie
 
Join Date: Jan 2014
Posts: 5
Downloads: 354
Uploads: 0
Icon5

Dear Ruby,


would you be so kind and allow me to post a short description on how to download your fantastic mod via SteamCMD so that non-Steam UBOAT Kaleuns can also use the Torpedovorhalterechner?


Kind regards,
telephono
telephono is offline   Reply With Quote
Old 07-10-20, 03:12 PM   #52
gavsboat
Nub
 
Join Date: Aug 2019
Location: North Lincolnshire
Posts: 3
Downloads: 15
Uploads: 0
Default

Quote:
Originally Posted by telephono View Post
Dear Ruby,


would you be so kind and allow me to post a short description on how to download your fantastic mod via SteamCMD so that non-Steam UBOAT Kaleuns can also use the Torpedovorhalterechner?


Kind regards,
telephono
Your comment alone gave me enough clues to figure out how to get it so great thanks. I now have downloaded it using steamCMD. However now im clueless as to where i should actually put it in my gog uboat files?

Update
I figured it out and have it up and running woop! Thanks Ruby, Freekoly ZNC and telephono

Last edited by gavsboat; 07-10-20 at 03:49 PM. Reason: update info
gavsboat is offline   Reply With Quote
Old 07-11-20, 05:45 AM   #53
Ruby2000
Engineer
 
Join Date: Sep 2005
Posts: 210
Downloads: 71
Uploads: 0
Default

Quote:
Originally Posted by telephono View Post
Dear Ruby,


would you be so kind and allow me to post a short description on how to download your fantastic mod via SteamCMD so that non-Steam UBOAT Kaleuns can also use the Torpedovorhalterechner?


Kind regards,
telephono
Hi telephono,

of course, gladly!
Thanks!

Cheers Ruby
Ruby2000 is offline   Reply With Quote
Old 07-14-20, 05:55 AM   #54
telephono
Swabbie
 
Join Date: Jan 2014
Posts: 5
Downloads: 354
Uploads: 0
Support How to install this mod for non-Steam users

To install this mod in non-Steam UBOAT you need to download and set up SteamCMD.


SteamCMD can be downloaded here: https://developer.valvesoftware.com/...ading_SteamCMD

We need to extract the steamcmd.exe into it's own directory.


Let's asume we use the following directory:
Code:
C:\SteamCMD
C:\SteamCMD\steamcmd.exe
steamcmd.exe can be run from the Command Prompt but let's create a batch file instead so we can update the mod later with a few simple clicks.


Create a batch file update_mods.bat in the same directory you put the steamcmd.exe
Code:
C:\SteamCMD
C:\SteamCMD\steamcmd.exe
C:\SteamCMD\update_mods.bat
with the following content:

Code:
steamcmd +login anonymous +workshop_download_item 494840 2282199115 +quit
This runs SteamCMD and does the following things:
  • login anonymous - We don't need to login with a real user to download workshop items
  • workshop_download_item <app id> <workshop item id> - Download the specified workshop item
  • quit - Quit SteamCmd
Okay, so now let's run our update_mods.bat batch file. It should take a while to update SteamCMD. This will add a lot of files into our directory. After updating itself, it will download the Real TDC mod.

The Real TDC mod will be downloaded into the following directory:
Code:
C:\SteamCMD\steamapps\workshop\content\494840\2282199115\
Now the only thing left is to copy this directory into the UBOAT Mods folder.
For UBOAT from GOG.com the Mods folder is located here:
Code:
C:\Users\<username>\AppData\LocalLow\Deep Water Studio\UBOAT\Mods\
But let's not copy the Real TDC mod folder from SteamCMD into the UBOAT Mods folder but rather create a link (or Directory Junction like Windows likes to call it) to save some disk space and avoid copying the folder everytime the mod was updated through SteamCMD.

First, delete the Mods folder. We will create a link to the Steam workshop folder, instead.

Open a Command Prompt and use the following commands to go into the UBOAT Mods folder and create a junction to the Real TDC Mods folder inside SteamCMD directory structure:
Code:
CD %APPDATA%\..\LocalLow\Deep Water Studio\UBOAT
MKLINK /J Mods C:\SteamCMD\steamapps\workshop\content\494840
That's it. The Real TDC Mod should now be available in your non-Steam UBOAT.

Last edited by telephono; 06-07-21 at 08:29 AM. Reason: Link the entire Steam workshop folder for UBOAT, instead of single mods
telephono is offline   Reply With Quote
Old 07-14-20, 07:04 AM   #55
Ruby2000
Engineer
 
Join Date: Sep 2005
Posts: 210
Downloads: 71
Uploads: 0
Default

Hi telephono,

thank you very much!

Cheers Ruby
Ruby2000 is offline   Reply With Quote
Old 07-17-20, 05:22 AM   #56
Ruby2000
Engineer
 
Join Date: Sep 2005
Posts: 210
Downloads: 71
Uploads: 0
Default

HI,

a new Version is Online!


NEW VERSION: v1.7.5

MOD DOES NOT COMPATIBLE WITH B126 VERSION ANYMORE!
PLEASE USE RECOMMENDED GAME VERSION: B127 Hotfix 4

Changed:
- Returning to v1.7 full lighting system (it was simplified in v1.7.2, due to
B126 compatibility reasons)

Fixed:
- UI hierarchy sequence


Removed:
- B126 compatibility


Have fun and good hunting!

Cheers Ruby
Ruby2000 is offline   Reply With Quote
Old 07-22-20, 03:18 PM   #57
Ruby2000
Engineer
 
Join Date: Sep 2005
Posts: 210
Downloads: 71
Uploads: 0
Default

HI,

Ya está disponible la versión en español del manual de la TDC!
Muchas gracias a Tordo, quien tradujo el manual al español. ¡Muchas gracias!

A Spanish version of the TDC manual is online!
Many thanks to Tordo, who translated the manual into Spanish. Thanks a lot!

https://steamcommunity.com/sharedfil...?id=2161212854

Cheers Ruby

Last edited by Ruby2000; 07-22-20 at 03:41 PM.
Ruby2000 is offline   Reply With Quote
Old 07-22-20, 03:22 PM   #58
Topo65
Samurai Navy
 
Join Date: Nov 2005
Location: Atlántico Sur
Posts: 557
Downloads: 382
Uploads: 0
Default

Super Mod!!!
__________________
Cold Waters 1968 Campaign
LINK a lista de Youtube
My Blog: www.marenguerra.blogspot.com
Topo65 is offline   Reply With Quote
Old 07-22-20, 03:39 PM   #59
Ruby2000
Engineer
 
Join Date: Sep 2005
Posts: 210
Downloads: 71
Uploads: 0
Default

Thanks a lot Topo!
Cheers Ruby
Ruby2000 is offline   Reply With Quote
Old 01-10-21, 10:23 AM   #60
JconradH
Swabby
 
Join Date: Feb 2003
Location: Michigan
Posts: 41
Downloads: 219
Uploads: 0


Default Where do I get this if I'm not using STEAM?

Thank you telephono for information for non-steam versions!!
Jeff

Last edited by JconradH; 01-10-21 at 11:03 AM.
JconradH is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 01:12 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 1995- 2024 Subsim®
"Subsim" is a registered trademark, all rights reserved.