Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

I don't know if anyone has had these problems yet, but I'm pretty new and I didn't fully understand what was happening or now to fix!
 One problem was script from my actual game and script from PronounParrot interferring. I put the rpy file into my game like the instructions said, but that made it clash. 

My other problem, I simply don't understand at all:

I don't know if it was my game or something, I have no clue and I can never figure out how to fix it because I don't even know whats wrong with it. If someone could help out, thank you so much!

[code]

I'm sorry, but an uncaught exception occurred.

While running game code:

  File "renpy/common/00start.rpy", line 193, in script

    python:

  File "renpy/common/00start.rpy", line 194, in <module>

    renpy.execute_default_statement(True)

  File "game/script.rpy", line 21, in execute_default

    default pronounlist = [

Exception: store.pronounlist is being given a default a second time.

-- Full Traceback ------------------------------------------------------------

Full traceback:

  File "renpy/common/00start.rpy", line 193, in script

    python:

  File "C:\Users\{name}\OneDrive\Desktop\VN STUFF\renpy-8.3.3-sdk\renpy\ast.py", line 821, in execute

    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)

  File "C:\Users\{name}\OneDrive\Desktop\VN STUFF\renpy-8.3.3-sdk\renpy\python.py", line 1178, in py_exec_bytecode

    exec(bytecode, globals, locals)

  File "renpy/common/00start.rpy", line 194, in <module>

    renpy.execute_default_statement(True)

  File "C:\Users\{name}\OneDrive\Desktop\VN STUFF\renpy-8.3.3-sdk\renpy\exports\statementexports.py", line 372, in execute_default_statement

    i.execute_default(start)

  File "game/script.rpy", line 21, in execute_default

    default pronounlist = [

Exception: store.pronounlist is being given a default a second time.

Windows-10-10.0.26100 AMD64

Ren'Py 8.3.3.24111502

{name} 1.0

Thu Feb 27 09:25:20 2025

[/code]

You seem to be defining the pronounlist variable twice in your script according to the error in the code. Make sure you have only one defined. You will need to remove the default one if you added a separate one to script.rpy instead of editing the one in pronountool.rpy.