Amnesia.exe not recognized? Full Conversion. - 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: Amnesia.exe not recognized? Full Conversion. (/thread-19765.html) |
Amnesia.exe not recognized? Full Conversion. - Victor - 01-01-2013 So... I followed all the steps of the "How to Create a Total Conversion Mod without Changing Original Game Files" tutorial, by Tanshaydar, organized everything, but now, when I try to open the .bat, it says (something like this, because I'm translating from brazillian portuguese) that "Amnesia.exe is not recognized as an internal or external command, operable program or batch file". My Amnesia version is the... the one that is not Steam, the retail thing and my batch file for the Total Conversion is: Code: cd /d .. I sailed across the forums, hoping to find an answer, but nothing I've found was useful... Meaning it didn't work. If anyone can help me and need more info, I will be refreshing this page like a mothafu****. Thanks. RE: Amnesia.exe not recognized? Full Conversion. - Your Computer - 01-01-2013 If you're following the tutorial from Tanshaydar, then i wouldn't expect the cd command to work for your setup (the cd command is what i used in my tutorial, which takes a different approach to making a full conversion than Tanshaydar's tutorial). In other words, the script can't find the Amnesia executable. When you don't provide the absolute path to the file, the system assumes a relative path. The cd command is used to change the current working directory, which is where the system is looking in for the EXE file, which is a relative path. RE: Amnesia.exe not recognized? Full Conversion. - Victor - 01-01-2013 Oh, thanks! I erased that part and now it kinda opens up, but another problem showed up, an Exception Error thing. I opened the log in the Documents folder of the total conversion and everything went fine, except for Code: ERROR: Couldn't load language file 'citysleeps_config/lang/english.lang' RE: Amnesia.exe not recognized? Full Conversion. - Your Computer - 01-01-2013 That looks like something that is caused when you mess up your resources.cfg file. Don't worry about the warnings, they're not supposed to cause the game to crash. RE: Amnesia.exe not recognized? Full Conversion. - Victor - 01-01-2013 Thanks a lot, Your Computer. You're a badass with this kind of stuff. I'm gonna search through my resources.cfg now. Thanks. |