nobody can find a solution for the image error?
View attachment 1325378
I found a solution for the script errors that appear whenever there is a conversation with Miss Esperanza, but the solution involves editing a file.
Open the file game/script.rpy and edit it using Notepad++ (make a copy before editing)
Line 98 defines a variable called "esp" dedicated for Spanish Language as follows:
$ esp = False
And, this variable is called twice in the entire file, once in line 122
$ esp = True
and another in line 208
elif esp == True:
This variable is unfortunately defined exactly as another variable defined for Miss Esperanza as found in line 37
define esp = Character("Miss Esperanza", color="#ffb8f1")
I solved this problem by:
1- renaming the variable
esp to
espn in lines 98, 122, and 208 of the script.rpy file mentioned above
2- using "Unren", or another way to enable Console, make sure to open Console using Shift + O then type
esp then press Enter
3- If the result is
False, then you should type
esp=Character(u'Miss Esperanza') and then press Enter
That did it for me. I assume that instead of editing the file as shown above, maybe try the console method first since it might work without the hassle of editing the file