[CHAOS] pre menu doesnt show up - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html) +--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html) +---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html) +---- Thread: [CHAOS] pre menu doesnt show up (/thread-23297.html) |
pre menu doesnt show up - stonecutter - 09-20-2013 Hi everbody ... i started to create a fully isolated total conversion ... followed the tutorial and everything works fine except the pre menu .. i know that in the tutorial the pre menu is deactivated ... so i activated it with the value "true" ... after i start the game it shows the main_menu loading screen and the menu appears .. but no pre_menu ... any hints on a solution !? RE: pre menu doesnt show up - Your Computer - 09-20-2013 Pre-menus require their own configuration files which reference LANG categories and entries. If you don't have these, setting the value to true for pre menus won't mean anything. I do not provide any pre_menu.cfg files for my tutorial, so your result is expected. RE: pre menu doesnt show up - stonecutter - 09-21-2013 Yeah i know ... so i copied the pre_menu config from the PTEST .. and configured it to the following : Code: <PreMenu skin="gui_main_menu.skin"> i added to the resources : Code: <Directory Path="/gui" AddSubDirs="true" /> and i added the imagefile to the following folder: Quote:mymod/graphics/pre_menu/ Did i forget something ? Any Reference ? RE: pre menu doesnt show up - DnALANGE - 09-21-2013 (09-21-2013, 11:40 AM)stonecutter Wrote: Yeah i know ... so i copied the pre_menu config from the PTEST .. and configured it to the following : Here is what i Always do! As you can see i have 3 startpictures! BE AWARE the picture is on the good place in your mod and it is for example .JPG { for mine } Here is what I have : <PreMenu skin="gui_main_menu.skin"> <Section Image="startup_1a.jpg" Time="2" ShowFirstStartOnly="false"/> <Section Image="startup_2a.jpg" Time="2" ShowFirstStartOnly="false"/> <Section Image="Premenu_Flashlight.jpg" ShowFirstStartOnly="false" Music="Haunted Music Box.ogg" MusicVolume="0.5" MusicFadeTime="10" > <Text Pos="150 210 0" FrameSize="640 300" FontSize="18 18" TextCat="PreMenu" TextEntry="WelcomeMessage03" Color="1 1 1 1" Align="Left" /> </Section> </PreMenu> EDIT : Time = "20"!!!? 20 seconds for a picture Make sure thst is MAX 3 or looks weird! AMnesia uses 2 seconds! Btw here is where you have to put the pre_menu.cfg : Amnesia - The Dark Descent\redist\YOURMODSNAME\config --------------- You may try this stonecutter: <PreMenu skin="gui_main_menu.skin"> <Section Image="startup_fg_logo.jpg" Time="2" ShowFirstStartOnly="false"/> <Section Image="Premenu_Flashlight.jpg" ShowFirstStartOnly="false" Music="Haunted Music Box.ogg" MusicVolume="0.5" MusicFadeTime="10" > <Text Pos="150 210 0" FrameSize="640 300" FontSize="18 18" TextCat="PreMenu" TextEntry="WelcomeMessage03" Color="1 1 1 1" Align="Left" /> </Section> </PreMenu> RE: pre menu doesnt show up - stonecutter - 09-21-2013 Code: Amnesia - The Dark Descent\redist\YOURMODSNAME\config Code: <PreMenu skin="gui_main_menu.skin"> So i think there is no problem with the picture ... i think if the game cant find the picture it will show 20 seconds nothing ... but it goes directly to the main menu RE: pre menu doesnt show up - DnALANGE - 09-21-2013 (09-21-2013, 02:35 PM)stonecutter Wrote: Be free to add me on Skype, i will help you! I am also working on a FC atm so i will help you! redmaster12345, IF you have Skype offcourse, but i will fix this within some minutes if i can see your files closer! |