Project Crashes during Pre Menu - 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: Project Crashes during Pre Menu (/thread-23715.html) |
Project Crashes during Pre Menu - Gilligan's Hell - 10-28-2013 in my mod i've added a premenu and when i load it up it gives me a black box error then it crashes. From English.lang: <CATEGORY Name="PreMenu"> <Entry Name="Welcome01">THIS IS INSPIRED BY A TRUE STORY. This is a Amnesia Full Conversion Mod made by russian_sky Dev Team.</Entry> <Entry Name="Welcome02">1932, A Family was Driven from their home in Terror during the middle of the night. A Letter sent to Father Reise gets his attention. Investigate the house and put a stop to the Demonic Activity.</Entry> <Entry Name="Welcome03">Grab your Lantern Father... It's time to head to the house.</Entry> </CATEGORY> From Pre_menu.cfg: <PreMenu skin="gui_main_menu.skin"> <Section Image="russian_sky.jpg" Time="2" ShowFirstStartOnly="false"/> <Section Image="PreMenu1.jpg" ShowFirstStartOnly="true" Music="12_amb.ogg" MusicVolume="0.5" MusicFadeTime="10" > <Text Pos="80 210 0" FrameSize="640 300" FontSize="18 18" TextCat="PreMenu" TextEntry="Welcome01" Color="1 1 1 1" Align="Left" /> </Section> <Section Image="PreMenu2.jpg" ShowFirstStartOnly="true"> <Text Pos="80 210 0" FrameSize="640 300" FontSize="18 18" TextCat="PreMenu" TextEntry="Welcome02" Color="1 1 1 1" Align="Left" /> </Section> <Section Image="PreMenu3.jpg" ShowFirstStartOnly="true"> <Text Pos="80 210 0" FrameSize="640 300" FontSize="18 18" TextCat="PreMenu" TextEntry="Welcome03" Color="1 1 1 1" Align="Left" /> </Section> </PreMenu> What is Happening! RE: Project Crashes during Pre Menu - PutraenusAlivius - 10-28-2013 Compare it to another FC's cfg and see if they fit. Looks like it's the skin and image IMO. RE: Project Crashes during Pre Menu - Gilligan's Hell - 10-28-2013 I Think so. might need to resize it. The image sizes are 634 x 450. RE: Project Crashes during Pre Menu - The chaser - 10-28-2013 (10-28-2013, 01:41 PM)endosine Wrote: I Think so. might need to resize it. Bad, I know why doesn't it work: Images must be ALWAYS a power of two texture (256X256, 512X512, 1024X1024), etc. I think that's the problem, so try resizing the image to 512X512 and try if it works RE: Project Crashes during Pre Menu - Gilligan's Hell - 10-28-2013 I'll try it. RE: Project Crashes during Pre Menu - PutraenusAlivius - 10-28-2013 (10-28-2013, 01:41 PM)endosine Wrote: The image sizes are 634 x 450. Each image in Amnesia MUST have power of 2 exponents of resolution (like 256x256, 512x512, 1024x1024). My models have a 1024x1024 resolution |