Frictional Games Forum (read-only)

Full Version: Crash on startup...[Problem solved]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
So, I've been developing a full conversion for a while now, but now I've run into a serious bug ish thing I really can't solve on my own.

The menu loads up perfectly fine, but when I start off, I get the "Something is wrooooong" error screen with this message:

Code:
Amnesia.exe caused an EXCEPTION_ACCESS_VIOLATION in module Amnesia.exe at 0023:00547164

I'll provide any mod code if neccessary, I'm just holding back on that for now, for obvious reasons.

Thanks!
-Lambda
What were all the steps you took before receiving this error?
Well, I had a few strange bugs that misplaced all the entities in my first level. I fixed that(By changing a few things), and changed something in my main_init, but I cant remember what that was...
I had this same problem a while ago. Check out your main_init and your settings.cfg files and make sure everything is correct. I can't remember exactly how I fixed it but there was something wrong in one of those files.
Couldn't find anything myself, d'you guys have any suggestions?:
Code:
<ConfigFiles
    Resources = "resources.cfg"
    Materials = "materials.cfg"
    
    Game = "config/game.cfg"
    Menu = "config/theturn_menu.cfg"
    PreMenu = "config/pre_menu.cfg"
    Demo = "config/demo.cfg"
    
    DefaultMainSettings = "config/default_main_settings.cfg"

    DefaultMainSettingsLow = "launcher/default_main_settings_low.cfg"
    DefaultMainSettingsMedium = "launcher/default_main_settings_medium.cfg"
    DefaultMainSettingsHigh = "launcher/default_main_settings_high.cfg"


    DefaultUserSettings = "config/default_user_settings.cfg"
    DefaultUserKeys        = "config/default_user_keys.cfg"
    
    DefaultBaseLanguage = "base_english.lang"
    DefaultGameLanguage = "english.lang"
/>

<Directories  
    MainSaveFolder = "Main"
    
    BaseLanguageFolder = "config/"        
    GameLanguageFolder = "config/lang_theturn/"
    
    CustomStoryPath = "custom_stories"
/>

<Variables
    GameName = "The Turn - An Amnesia: The Dark Descent Mod"
/>

<StartMap
    File = "bed_area.map"
    Folder = "maps/theturn/"
    Pos = "PlayerStartArea_1"
/>
Note: I've checked the hpl.log file. No hints there.
If you are an ATI user You may need the latest PhysX system softwere
Only you having Serious trouble with your Graphics and textures
Or just the Startup Problem
Nope, NVidia GeForce. And IF that would have been the problem, I would have gotten it earlier, eh?
Okay, so here's my last resort.
I uploaded a build of the mod, without all important custom things(Voiceacting etc.), to see if anyone can find a bug or anything.

Please, only use this to check if you can help me with finding the bug, and dont distribute/steal my work, you wouldn't really be a nice person, to put it in a way that I wont get banned for offensive language.
Here's the link:
http://www.mediafire.com/?627wt8gdqxym22a
File password: RIPAZHA
Anyone who knows where the password refers to, deserves a virtual cookie.
In your theturn_main_init.cfg file, the value for GameLanguageFolder points to a folder that doesn't exist (i.e. the folder name is different than the one referenced).
Pages: 1 2