Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Stranga on Sat 26/11/2022 23:57:59

Title: Error Pop Up when trying to load my game (AGS V-3.6.0.22) [SOLVED]
Post by: Stranga on Sat 26/11/2022 23:57:59
Hello everyone,

I am having trouble opening my game, I think it may have something to do with the translation files. Here's the error but I am not sure I understand it correctly:

(https://i.imgur.com/XolLSY6.png)

Any help would be greatly appreciated
Title: Re: Error Pop Up when trying to load my game (AGS V-3.6.0.22)
Post by: Crimson Wizard on Sun 27/11/2022 00:19:49
This error means that you somehow have two translations under same names in the project.

The editor should've perhaps not break on this situation, but under these circumstances you probably can try fixing the project by hand.

If you open Game.agf in a regular text editor (or xml editor), and search for "<Translations>", you'll see a list of translations in your game. It should look something like:
Code (xml) Select
    <Translations>
      <Translation>
        <Name>New Translation</Name>
      </Translation>
    </Translations>
See if there are any duplicates, and remove them by hand.
Title: Re: Error Pop Up when trying to load my game (AGS V-3.6.0.22) [SOLVED]
Post by: Stranga on Sun 27/11/2022 00:23:39
That did it! Thanks a big one CW!  :=  :-D