Difference between revisions of "HPL2/Troubleshooting"

From Frictional Wiki
Jump to navigation Jump to search
(Some clean up)
(Some expansion)
Line 6: Line 6:
 
Make sure that your game is up to date to the latest version, and you have the [[HPL2/Tools|latest tools]].
 
Make sure that your game is up to date to the latest version, and you have the [[HPL2/Tools|latest tools]].
  
== Common Errors ==
+
==Main game issues==
 +
Are you having issues with just playing Amnesia? Go to the [http://frictionalgames.com/forum/thread-3754.html troubleshooting FAQ on the forums] which details solutions to many common problems or search the [http://www.frictionalgames.com/forum/forum-31.html Amnesia technical support forums]. If you wish to get a more active support, ask the community on [https://discord.com/invite/frictionalgames FG's Discord server].
  
Don't forget to use the root LANGUAGE tag in the "extra_english.lang" file when trying to create your own custom story. The contents of this file (or "extra_XXX.lang" - where XXX is some alternative language) must look like this:
+
Additionally you can go to [http://support.frictionalgames.com/entry/98/ Frictional Game's support page] for further support.
 +
{{bug|The [http://support.frictionalgames.com/entry/98/ Frictional Game's support page] might be out of commission.}}
 +
== Modding ==
 +
===Editors not scaling===
 +
 
 +
The HPL2 editors don't scale normally. Your only option is to change their resolution in their options (keep in mind not all of the tools have this feature). Restart the tool for changes to take effect.
 +
 
 +
===Scripts not working===
 +
*Check if your script has the same name as the map
 +
*Check if all names are correct; Keep in mind that using spaces doesn't work. Use the underscore _ instead.
 +
 
 +
===All text (notes, inventory) dissappeared===
 +
 
 +
You probably have a mistake (usually a missing < or > sign) in your .lang file. Check the last thing you wrote first.
 +
 
 +
Having trouble with finding the mistake? If you're using Notepad++, go to Syntax and set it to XML. Look for the part at which the highlighint breaks.
 +
 
 +
===Lang file general advice===
 +
Don't forget to use the root LANGUAGE tag in the '''"extra_english.lang"''' file when trying to create your own custom story. The contents of this file (or "extra_XXX.lang" - where XXX is some alternative language) must look like this:
  
 
<syntaxhighlight lang="xml">
 
<syntaxhighlight lang="xml">
Line 21: Line 40:
  
 
You can then have as many CATEGORY tags inside the LANGUAGE tag as necessary with the appropriate "Name" attributes.
 
You can then have as many CATEGORY tags inside the LANGUAGE tag as necessary with the appropriate "Name" attributes.
 
== Need More Help? ==
 
 
Go to the [http://frictionalgames.com/forum/thread-3754.html|troubleshooting FAQ on the forums] which details solutions to many common problems or make a post on the [http://www.frictionalgames.com/forum/forum-31.html Amnesia technical support forums]. Additionally you can go to [http://support.frictionalgames.com/entry/98/ Frictional Game's support page] for further support.
 

Revision as of 00:14, 26 July 2020

Troubleshooting

Before you begin, make sure that you update your drivers to the latest versions. Instability issues from outdated drivers or an outdated game version are the number one reported problem, but thankfully they're the easiest to solve. So get to updating!

Make sure that your game is up to date to the latest version, and you have the latest tools.

Main game issues

Are you having issues with just playing Amnesia? Go to the troubleshooting FAQ on the forums which details solutions to many common problems or search the Amnesia technical support forums. If you wish to get a more active support, ask the community on FG's Discord server.

Additionally you can go to Frictional Game's support page for further support.

Modding

Editors not scaling

The HPL2 editors don't scale normally. Your only option is to change their resolution in their options (keep in mind not all of the tools have this feature). Restart the tool for changes to take effect.

Scripts not working

  • Check if your script has the same name as the map
  • Check if all names are correct; Keep in mind that using spaces doesn't work. Use the underscore _ instead.

All text (notes, inventory) dissappeared

You probably have a mistake (usually a missing < or > sign) in your .lang file. Check the last thing you wrote first.

Having trouble with finding the mistake? If you're using Notepad++, go to Syntax and set it to XML. Look for the part at which the highlighint breaks.

Lang file general advice

Don't forget to use the root LANGUAGE tag in the "extra_english.lang" file when trying to create your own custom story. The contents of this file (or "extra_XXX.lang" - where XXX is some alternative language) must look like this:

<LANGUAGE>
    <CATEGORY Name="CustomStoryMain">
        <Entry Name="Description">
            This is the description of my Custom Story! It is SCARY!
        </Entry>
    </CATEGORY>
</LANGUAGE>

You can then have as many CATEGORY tags inside the LANGUAGE tag as necessary with the appropriate "Name" attributes.