- Dec 15, 2020
- 29
- 37
In order to fix it open "script.rpy" present in the game folder.Got this myself. It looks like the dev neglected to put in a Sayer definition for this Arthur person:
Code:LetTheNightshineIn-Chapter-2-pc $ find . -name "*.rpy" -exec grep -iH "define" {} \; | grep -i ariana ./game/script.rpy:define ariana = Character ("Ariana", color = "FF69B4") ./game/script.rpy:define arito = Character ("Ariana's Thoughts", color = "#ff8000") ./game/script.rpy:ariana "You have a very defined body, I really like it..." ./game/scriptlabelnolikeit.rpy:ariana "You have a very defined body, I really like it..." LetTheNightshineIn-Chapter-2-pc $ find . -name "*.rpy" -exec grep -iH "define" {} \; | grep -i arthur (nada)
Then in line no 31 add
Python:
define arthur = Character ("Arthur", color = "008000")
That should resolve the issue.