SUBSIM Radio Room Forums



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

Go Back   SUBSIM Radio Room Forums > Silent Hunter 3 - 4 - 5 > SH5 Mods Workshop
Forget password? Reset here

Reply
 
Thread Tools Display Modes
Old 03-28-10, 03:09 AM   #1
de vliegende hollander
Stowaway
 
Posts: n/a
Downloads:
Uploads:
Default who can help me ?

i have installed NewUIs_TDC_1_0_0_By The DarkWraith
but i get always this message



who can help me solve this problem ?

grt henk
  Reply With Quote
Old 03-28-10, 06:47 AM   #2
lorka42
Planesman
 
Join Date: Jan 2010
Posts: 190
Downloads: 35
Uploads: 5
Default

Did you follow the instructions provided with the mod? That ones a bit tricksy.
Did you install with jsgme?
lorka42 is offline   Reply With Quote
Old 03-28-10, 03:23 PM   #3
de vliegende hollander
Stowaway
 
Posts: n/a
Downloads:
Uploads:
Default

yes i do
have put it in jsgsme
  Reply With Quote
Old 03-28-10, 09:29 PM   #4
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

when do you get this error? Were you accessing some menu item or the nav map or were you closing some menu item (nav map, crew control, etc.)?
TheDarkWraith is offline   Reply With Quote
Old 03-29-10, 02:19 AM   #5
de vliegende hollander
Stowaway
 
Posts: n/a
Downloads:
Uploads:
Default

it's in the navmap when i closed or open the game crash

it's in version 1.0.0 and the version 1.1.0 is the same problem
  Reply With Quote
Old 03-29-10, 03:14 AM   #6
mobucks
Seasoned Skipper
 
Join Date: Jan 2010
Posts: 713
Downloads: 209
Uploads: 0
Default

is your game fully updated to v 1.0.15 (or somthing along those lines, .15 should be in ur game version number)
mobucks is offline   Reply With Quote
Old 03-29-10, 05:33 AM   #7
de vliegende hollander
Stowaway
 
Posts: n/a
Downloads:
Uploads:
Default

yes it's
the game is fully upgrated
  Reply With Quote
Old 03-29-10, 07:08 AM   #8
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

I'm looking into this but need to know exactly what you do to get the error.
TheDarkWraith is offline   Reply With Quote
Old 03-29-10, 08:42 AM   #9
de vliegende hollander
Stowaway
 
Posts: n/a
Downloads:
Uploads:
Default

look at the picture then you know


sorry for my english
  Reply With Quote
Old 03-29-10, 08:43 AM   #10
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

I need to know what you did to get the error. What screen you were at when you did what?
TheDarkWraith is offline   Reply With Quote
Old 03-29-10, 04:42 PM   #11
de vliegende hollander
Stowaway
 
Posts: n/a
Downloads:
Uploads:
Default

i was by the dekgun and want to see the navmap

and on the brigde and want to see the navmap
  Reply With Quote
Old 03-29-10, 06:20 PM   #12
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

Quote:
Originally Posted by de vliegende hollander View Post
i was by the dekgun and want to see the navmap

and on the brigde and want to see the navmap
I'll see if I can get your error to repeat. What version of the mod were you using (v1.1.0)?
TheDarkWraith is offline   Reply With Quote
Old 03-29-10, 06:50 PM   #13
Kptlt.Mahs
Swabbie
 
Join Date: Nov 2002
Posts: 8
Downloads: 19
Uploads: 0
Default

I can reproduce it that way:

go to bridge, click NAV officer, click DRAW COURSE twice.

I have 1.1.0, SH3 styles interface and I have commented out:

#HeadingBarIncreaseHeadingKey = MenuKeyManagerWrapper.Keys.E
#HeadingBarDecreaseHeadingKey = MenuKeyManagerWrapper.Keys.Q
HeadingBarUserDelay = 0
# HeadingRudderKey = MenuKeyManagerWrapper.Keys.C

Cause I use these keys already and didnt need that function. Even doesnt know if its used in SH3 interface, anyway.

If you cant reproduce it, click a little wild and random on the Nav officer and his icons. Anywhen the game "freezes", you have to ALT-TAB out and ALT-TAB in to see the message. You click it away and can continue playing.
Hope this helps.

BR
Kptlt.Mahs is offline   Reply With Quote
Old 03-30-10, 12:20 AM   #14
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

Quote:
Originally Posted by de vliegende hollander View Post
i have installed NewUIs_TDC_1_0_0_By The DarkWraith
but i get always this message



who can help me solve this problem ?

grt henk
ok, found the problem. Boy it was a good one In short, there's a possibility that a variable of mine can be set to 'None'. This variable is used to set the FeedBackMode of the mini-map. The FeedBackMode uses an enumeration for it's possible states (0, 1, and 2). Obviously 'None' is not one of those states I set it to None to denote that the mini-map doesn't need to be restored (it was minimized when you entered into another station already). I've fixed the bug for the next release but if you want to fix it with the current versions you already have then you need to edit the \data\Scripts\Menu\Page Default Hud.py file. Edit this section of code adding the Red text (note: the code shown is a part of the function, it's not the complete function. The second red text line just needs to be indented as it's already in the function):

Code:
def Menu_PageDeactivated( page ):
    from Pagecaptainlog import Pagecaptainlog
    PageDefaultHud_MenuGroup_QuickAccess_CaptainPanel.SetCheck( Pagecaptainlog.Visible, False )
 #
    from Pagenavigationmap import Pagenavigationmap
    if page == Pagenavigationmap:
       # Modified by TheDarkWraith
       #SetFeedBackMode( FeedBackModes.TAI, Instant.No )
       global MapModeWhenForcedMinimized
       if MapModeWhenForcedMinimized != None:
         SetFeedBackMode( MapModeWhenForcedMinimized, Instant.No )
       SetVisibleHudComponentsForGameState()
       PageDefaultHud_MenuGroup_QuickAccess_NavigationMap.SetCheck( False, False )
bug will be history

here is a link to an updated v1.1.0 Page Default Hud.py file if you don't want to edit yours:
http://www.filefront.com/15972167/Page-Default-Hud.py/

Last edited by TheDarkWraith; 03-30-10 at 12:44 AM.
TheDarkWraith is offline   Reply With Quote
Reply


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 08:48 AM.


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