thien ngoc

Newbie
Mar 28, 2019
61
31
118
I tested all my choice and got all of Xandaria's reactions to each choice, now I only need her to be in the gallery, for something like a trophy, not for my laziness
 

joshuka

New Member
Jun 27, 2018
4
1
53
Anyone got a fix or save for trying to get the catalog at night at the entrance, game crashes everytime I try to use the potion to go outside and I’m towards the end of act 1
 

pj3003

Newbie
Aug 30, 2017
58
16
220
Does anyone know when the bug with going outside with potion will be fixed - without fixing this bug the game loses a bit of sense :(
 

EfontMan

Active Member
Aug 23, 2021
564
1,126
266
When you try to use the potion to port outside at night to the front entrance to unlock the item catalogue (in the old story Act 1 Chapter 5), you get an undeclared variable error with game\scripts\plot\act_1\chapter_5\menus.rpy that cannot be gotten past by mashing the Ignore button. The devs are apparently aware of the issue and have said there will be a hotfix coming.

The specific code block in question appears to be the following, with xpos the variable apparently undeclared:

Code:
        if not inventory.get_amount("time_turner"):
            $ xpos = renpy.random.randint(400, 910)
            $ ypos = renpy.random.randint(910, 1025)
            show location_hint:
                pos (xpos, ypos)
                alpha stats_manager.get_stat("perception").level * .1
            $ del xpos, ypos
I tried fiddling with it with no luck. Just ended up getting errors in other scripts instead. But Python is very much not in my wheelhouse.
 
Last edited:

EfontMan

Active Member
Aug 23, 2021
564
1,126
266
Do exactly what it says. Open your inventory and drag the listed items over Little Sally's portrait in the order stated.
 

Dukill

Newbie
Jun 28, 2018
44
39
121
[QUOTE = "EfontMan, postagem: 6654969, membro: 4094972"]
Faça exatamente o que diz. Abra seu inventário e arraste os itens listados sobre o retrato da Pequena Sally na ordem indicada.
[/CITAR]
Thanks... Sally was not mentioned
 

EfontMan

Active Member
Aug 23, 2021
564
1,126
266
Not explicitly in the journal, but it's implied. You ask Snape for a way to keep Little Sally awake while spying on the classes.
 

Dankness23

Newbie
Aug 2, 2017
38
24
79
So I am stuck at trying to buy a gift for Susan so she can keep baking cakes every time I go outside at night with the potion my game keeps crashing and I can’t roll back or ignore the error some pls help
 

algsnet

New Member
Jul 8, 2020
14
1
96
Good afternoon;

Can anyone help me with the following error?




Code:
I'm sorry, but an uncaught exception occurred.

Compiling ATL code at game/scripts/plot/act_1/chapter_5/menus.rpy:2862
  File "game/IWscripts/class_Location.rpy", line 101, in __call__
  File "game/IWscripts/AssistantFunctions.rpy", line 95, in show_image
NameError: name 'xpos' is not defined

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

Full traceback:
  File "script.rpyc", line 63, in script call
  File "scripts/plot/plot_menu.rpyc", line 187, in script call
  File "scripts/plot/act_1/act1_menu.rpyc", line 49, in script call
  File "scripts/plot/act_1/chapter_5/menus.rpyc", line 389, in script call
  File "mechanics/inventory.rpyc", line 142, in script call
  File "scripts/plot/act_1/chapter_5/menus.rpyc", line 2748, in script call
  File "scripts/plot/act_1/chapter_5/menus.rpyc", line 2925, in script
  File "game/modules/locations.rpym", line 91, in execute
    choice = location(zone_props, *images.items(), **zones)
  File "game/IWscripts/class_Location.rpy", line 101, in __call__
  File "game/IWscripts/AssistantFunctions.rpy", line 95, in show_image
  File "renpy/exports.py", line 770, in show
    sls.add(layer, img, key, zorder, behind, at_list=at_list, name=name, atl=atl, default_transform=default_transform, transient=transient)
  File "renpy/display/core.py", line 1105, in add
    if not self.hide_or_replace(layer, remove_index, "replaced"):
  File "renpy/display/core.py", line 1159, in hide_or_replace
    d = oldsle.displayable._hide(now - st, now - at, prefix)
  File "renpy/display/transform.py", line 628, in _hide
    self.update_state()
  File "renpy/display/transform.py", line 890, in update_state
    fr = self.execute(self, self.st, self.at)
  File "renpy/atl.py", line 542, in execute
    block = self.compile()
  File "renpy/atl.py", line 510, in compile
    block = self.atl.compile(self.context)
  File "game/modules/ATL.rpym", line 91, in compile
    statements = [ i.compile(ctx) for i in self.statements ]
  File "renpy/atl.py", line 953, in compile
    value = ctx.eval(expr)
  File "renpy/atl.py", line 260, in eval
    return eval(expr, renpy.store.__dict__, self.context) # @UndefinedVariable
  File "<string>", line 1, in <module>
NameError: name 'xpos' is not defined

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Innocent Witches 0.8-alpha
Tue Sep 28 15:18:16 2021
 

Radiffy

Newbie
Sep 10, 2017
92
49
211
I am having issues with going outside at night. When I do the game crashes is there a fix for that
Anyone got a fix or save for trying to get the catalog at night at the entrance, game crashes everytime I try to use the potion to go outside and I’m towards the end of act 1
Does anyone know when the bug with going outside with potion will be fixed - without fixing this bug the game loses a bit of sense :(
When you try to use the potion to port outside at night to the front entrance to unlock the item catalogue (in the old story Act 1 Chapter 5), you get an undeclared variable error with game\scripts\plot\act_1\chapter_5\menus.rpy that cannot be gotten past by mashing the Ignore button. The devs are apparently aware of the issue and have said there will be a hotfix coming.

The specific code block in question appears to be the following, with xpos the variable apparently undeclared:

Code:
        if not inventory.get_amount("time_turner"):
            $ xpos = renpy.random.randint(400, 910)
            $ ypos = renpy.random.randint(910, 1025)
            show location_hint:
                pos (xpos, ypos)
                alpha stats_manager.get_stat("perception").level * .1
            $ del xpos, ypos
I tried fiddling with it with no luck. Just ended up getting errors in other scripts instead. But Python is very much not in my wheelhouse.
According to discord the bugfix is still in testing so we still have to wait some time.
 
  • Like
Reactions: pj3003
3.00 star(s) 345 Votes