View Full Version : who can help me ?
de vliegende hollander
03-28-10, 03:09 AM
i have installed NewUIs_TDC_1_0_0_By The DarkWraith
but i get always this message
http://i39.tinypic.com/1zbq4xx.jpg
who can help me solve this problem ?
grt henk
lorka42
03-28-10, 06:47 AM
Did you follow the instructions provided with the mod? That ones a bit tricksy.
Did you install with jsgme?
de vliegende hollander
03-28-10, 03:23 PM
yes i do
have put it in jsgsme
TheDarkWraith
03-28-10, 09:29 PM
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.)?
de vliegende hollander
03-29-10, 02:19 AM
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
mobucks
03-29-10, 03:14 AM
is your game fully updated to v 1.0.15 (or somthing along those lines, .15 should be in ur game version number)
de vliegende hollander
03-29-10, 05:33 AM
yes it's
the game is fully upgrated
TheDarkWraith
03-29-10, 07:08 AM
I'm looking into this but need to know exactly what you do to get the error.
de vliegende hollander
03-29-10, 08:42 AM
look at the picture then you know
http://i39.tinypic.com/1zbq4xx.jpg
sorry for my english
TheDarkWraith
03-29-10, 08:43 AM
I need to know what you did to get the error. What screen you were at when you did what?
de vliegende hollander
03-29-10, 04:42 PM
i was by the dekgun and want to see the navmap
and on the brigde and want to see the navmap
TheDarkWraith
03-29-10, 06:20 PM
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)?
Kptlt.Mahs
03-29-10, 06:50 PM
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
TheDarkWraith
03-30-10, 12:20 AM
i have installed NewUIs_TDC_1_0_0_By The DarkWraith
but i get always this message
http://i39.tinypic.com/1zbq4xx.jpg
who can help me solve this problem ?
grt henk
ok, found the problem. Boy it was a good one :o 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):
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 :yeah:
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/
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.