3.00 star(s) 6 Votes

rabultfe

Member
May 4, 2019
267
207
Can I have the save file please?
Code:
```
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 6, in script call
    call intro from _call_intro
  File "game/locations/bedroom.rpy", line 201, in script
    call screen mainUI
  File "renpy/common/000statements.rpy", line 670, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "game/screens/mainUI.rpy", line 1, in execute
    screen mainUI():
  File "game/screens/mainUI.rpy", line 1, in execute
    screen mainUI():
  File "game/screens/mainUI.rpy", line 12, in execute
    if mc_inv.qty(qRayGoggles) > 0:
  File "game/screens/mainUI.rpy", line 12, in <module>
    if mc_inv.qty(qRayGoggles) > 0:
TypeError: '>' not supported between instances of 'NoneType' and 'int'

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

Full traceback:
  File "game/script.rpy", line 6, in script call
    call intro from _call_intro
  File "game/locations/bedroom.rpy", line 201, in script
    call screen mainUI
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\ast.py", line 2259, in execute
    self.call("execute")
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\ast.py", line 2241, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\statements.py", line 342, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 670, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\exports.py", line 3347, in call_screen
    rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\ui.py", line 299, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\display\core.py", line 3587, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, pause_modal=pause_modal, **kwargs) # type: ignore
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\display\core.py", line 4060, in interact_core
    root_widget.visit_all(lambda d : d.per_interact())
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\display\core.py", line 684, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\display\core.py", line 684, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\display\core.py", line 684, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\display\screen.py", line 476, in visit_all
    callback(self)
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\display\core.py", line 4060, in <lambda>
    root_widget.visit_all(lambda d : d.per_interact())
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\display\screen.py", line 487, in per_interact
    self.update()
  File "C:\Users\user\Downloads\games\RE_Hero_Academia-0.27-pc\renpy\display\screen.py", line 680, in update
    self.screen.function(**self.scope)
  File "game/screens/mainUI.rpy", line 1, in execute
    screen mainUI():
  File "game/screens/mainUI.rpy", line 1, in execute
    screen mainUI():
  File "game/screens/mainUI.rpy", line 12, in execute
    if mc_inv.qty(qRayGoggles) > 0:
  File "game/screens/mainUI.rpy", line 12, in <module>
    if mc_inv.qty(qRayGoggles) > 0:
TypeError: '>' not supported between instances of 'NoneType' and 'int'

Windows-10-10.0.22621 AMD64
Ren'Py 8.1.2.23090503
RE: Hero Academia 0.27
Sun Sep 10 20:01:00 2023
```
 

harem.king

Engaged Member
Aug 16, 2023
2,193
3,634
I remember liking this game a lot.
This is all I remember because it updates so slowly I have forgotten everything else about it since the last update
it has been literally an entire year since v0.26.

to make things worse, I can't even import my "old" saves from v0.25
 
Last edited:

Vitklim

Active Member
Feb 22, 2018
822
1,134
Please read through the last few thread pages before flooding the thread. It is most likely that others have encountered the same issue and raised it already.

The version posted here is an unofficial leak that has not been properly tested for bugs by the developer. It wasn't supposed to be public. Some of the kind people here provided fixes to some of the bugs in the previous thread pages, but it isn't complete, and the game still may bug out. In other words, it is best to wait for the developer to actually fix things, and post an official version of 0.27
 

Pugkipz

Newbie
Jul 23, 2019
40
28
Please read through the last few thread pages before flooding the thread. It is most likely that others have encountered the same issue and raised it already.

The version posted here is an unofficial leak that has not been properly tested for bugs by the developer. It wasn't supposed to be public. Some of the kind people here provided fixes to some of the bugs in the previous thread pages, but it isn't complete, and the game still may bug out. In other words, it is best to wait for the developer to actually fix things, and post an official version of 0.27
Just now see this, Big gooby move to leak the UNTESTED bug filled mess version that the dev hasnt finished tuning for actual release, Big Sad.
 
  • Like
Reactions: Icepicked

DarwinOpix

Newbie
May 4, 2017
16
7
edit game/Initialize/classes.rpy and add `return 0` on line 154. This should fix all of these inventory-related bugs


Code:
        def qty(self, item):
            for i in self.inv:
                if i[0] == item:
                    return i[1] # returns quantity
            return 0
I keep getting

```
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "game/Initialize/classes.rpy", line 154: Tab characters are not allowed in Ren'Py scripts.

Ren'Py Version: Ren'Py 8.1.2.23090503
Tue Sep 12 15:51:13 2023
```

But does the 'return 0' need to be tabbed within the for loop? Is that not what worked for you?
 

erisedreturns

New Member
Dec 5, 2020
11
25
I keep getting

```
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "game/Initialize/classes.rpy", line 154: Tab characters are not allowed in Ren'Py scripts.

Ren'Py Version: Ren'Py 8.1.2.23090503
Tue Sep 12 15:51:13 2023
```

But does the 'return 0' need to be tabbed within the for loop? Is that not what worked for you?
spaces, not tabs
 
  • Like
Reactions: OrangeCh
Sep 4, 2017
82
46
So I know that this version im trying out isnt at all what the dev intented seeing its a leaked pre release build, but after fixing most of the immidiate crashed with the help of previous posts I still have no idea how to beat even Jiro seeing I either do 60 damage with electrify and get one shot by the debuff, or do 2 rounds of 10 damage and just lose that way. and I have found no way to actually increase either my damage or health
 

Milvidi

Member
Game Developer
Feb 26, 2018
200
498
I've uploaded the public version for 0.27. This should fix almost, if not all inventory related bugs, and some others too.

Anyway, thanks for the support even after a long hiatus. I'm aware that the game is a bit of a mess with all the errors and soft locking in places, and not balanced, which is why we'll abandon the current code base in about 2 updates. This was written when I still knew pretty much nothing about Renpy, and it didn't age well at all.

This, plus wanting to try out all sort of things and mechanics, lead to an unstable game. We're already working on a V2, which will simplify and future-proof a lot of thing. Gameplay will focus onto one thing, which is the hidden-objects genre. You play a stage, then view a scene to advance the story. If you don't like that kind of game, you can opt to skip that portion and just read the story like a VN.
 

Sayajin2205

Member
Apr 21, 2022
324
1,341
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "renpy/common/000statements.rpy", line 670, in execute_call_screen
  File "game/ho games/ho_start.rpy", line 48, in execute
  File "game/ho games/ho_start.rpy", line 48, in execute
  File "game/ho games/ho_start.rpy", line 49, in execute
  File "game/ho games/ho_start.rpy", line 49, in <module>
NameError: name 'game_bg' is not defined

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

Full traceback:
  File "script.rpyc", line 6, in script call
  File "locations/mc_hallway.rpyc", line 5, in script call
  File "locations/school_gate.rpyc", line 11, in script call
  File "locations/classroom.rpyc", line 5, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/tg_corner.rpyc", line 4, in script call
  File "fights/fight.rpyc", line 21, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/mc_hallway.rpyc", line 5, in script call
  File "locations/classroom.rpyc", line 49, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/school_gate.rpyc", line 28, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/park.rpyc", line 47, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/bedroom.rpyc", line 8, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 13, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/school_gate.rpyc", line 14, in script call
  File "locations/school_hallway.rpyc", line 11, in script call
  File "locations/classroom.rpyc", line 8, in script call
  File "locations/school_gate.rpyc", line 17, in script call
  File "locations/school_gate.rpyc", line 28, in script call
  File "locations/convenient_store.rpyc", line 5, in script call
  File "locations/convenient_store.rpyc", line 36, in script call
  File "characters/ochaco.rpyc", line 273, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "characters/ochaco.rpyc", line 177, in script call
  File "locations/classroom.rpyc", line 16, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "characters/ochaco.rpyc", line 273, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "characters/eijiro.rpyc", line 8, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/school_yard.rpyc", line 12, in script call
  File "characters/ochaco.rpyc", line 273, in script call
  File "locations/tg_corner.rpyc", line 4, in script call
  File "interactables/tg_rest_chair.rpyc", line 3, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "characters/ochaco.rpyc", line 273, in script call
  File "locations/tg_corner.rpyc", line 4, in script call
  File "interactables/tg_rest_chair.rpyc", line 6, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/training_ground.rpyc", line 36, in script call
  File "locations/training_ground.rpyc", line 39, in script call
  File "locations/tg_corner.rpyc", line 4, in script call
  File "ochaco events/ochaco_tg_chair_massage.rpyc", line 9, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "characters/ochaco.rpyc", line 177, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "locations/classroom.rpyc", line 19, in script call
  File "locations/classroom.rpyc", line 22, in script call
  File "locations/school_yard.rpyc", line 12, in script call
  File "locations/tg_corner.rpyc", line 4, in script call
  File "ochaco events/ochaco_tg_chair_massage.rpyc", line 9, in script call
  File "locations/bedroom.rpyc", line 18, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 49, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/beach.rpyc", line 28, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "locations/park.rpyc", line 47, in script call
  File "locations/gym.rpyc", line 28, in script call
  File "locations/convenient_store.rpyc", line 36, in script call
  File "locations/bedroom.rpyc", line 11, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 49, in script call
  File "locations/tg_corner.rpyc", line 4, in script call
  File "interactables/tg_rest_chair.rpyc", line 9, in script call
  File "locations/tg_corner.rpyc", line 4, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 15, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/school_gate.rpyc", line 20, in script call
  File "locations/school_hallway.rpyc", line 15, in script call
  File "locations/school_gate.rpyc", line 23, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/park.rpyc", line 47, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/school_hallway.rpyc", line 13, in script call
  File "locations/classroom.rpyc", line 49, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "locations/bedroom.rpyc", line 24, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 30, in script call
  File "locations/mc_hallway.rpyc", line 5, in script call
  File "locations/tsuyu_room.rpyc", line 19, in script call
  File "nemuri tsuyu events/nemuri_tsuyu_0_8.rpyc", line 59, in script call
  File "locations/bedroom.rpyc", line 33, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/park.rpyc", line 47, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 49, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/tsuyu_room.rpyc", line 72, in script call
  File "locations/school_gate.rpyc", line 28, in script call
  File "locations/tg_corner.rpyc", line 4, in script call
  File "interactables/tg_rest_chair.rpyc", line 12, in script call
  File "locations/tg_corner.rpyc", line 4, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 49, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/park.rpyc", line 47, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 42, in script call
  File "locations/mc_hallway.rpyc", line 5, in script call
  File "locations/park.rpyc", line 47, in script call
  File "locations/ulab_1_1.rpyc", line 21, in script call
  File "locations/ulab_1_1.rpyc", line 21, in script call
  File "locations/ulab_1_1.rpyc", line 21, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_1.rpyc", line 21, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "fights/fight.rpyc", line 21, in script call
  File "fights/fight.rpyc", line 21, in script call
  File "locations/ulab_1_1.rpyc", line 21, in script call
  File "locations/ulab_1_2.rpyc", line 17, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "locations/ulab_1_3.rpyc", line 36, in script call
  File "locations/beach.rpyc", line 28, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/music_shop.rpyc", line 34, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 25, in script call
  File "locations/classroom.rpyc", line 49, in script call
  File "locations/training_ground.rpyc", line 42, in script call
  File "locations/training_ground.rpyc", line 45, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 28, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/training_ground.rpyc", line 48, in script call
  File "locations/training_ground.rpyc", line 51, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 31, in script call
  File "locations/classroom.rpyc", line 49, in script call
  File "locations/park.rpyc", line 47, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "fights/fight.rpyc", line 21, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 45, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/convenient_store.rpyc", line 36, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/convenient_store.rpyc", line 36, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 48, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/school_gate.rpyc", line 28, in script call
  File "locations/tsuyu_room.rpyc", line 72, in script call
  File "locations/park.rpyc", line 47, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/convenient_store.rpyc", line 36, in script call
  File "locations/bedroom.rpyc", line 51, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 54, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "fights/fight.rpyc", line 21, in script call
  File "fights/fight.rpyc", line 21, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 57, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 49, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/tsuyu_room.rpyc", line 72, in script call
  File "locations/bedroom.rpyc", line 36, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/tsuyu_room.rpyc", line 22, in script call
  File "nemuri tsuyu events/nemuri_tsuyu_0_13.rpyc", line 25, in script call
  File "locations/school_gate.rpyc", line 26, in script call
  File "locations/school_hallway.rpyc", line 18, in script call
  File "locations/tsuyu_room.rpyc", line 25, in script call
  File "nemuri tsuyu events/nemuri_tsuyu_0_16.rpyc", line 33, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 39, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/tsuyu_room.rpyc", line 33, in script call
  File "locations/tsuyu_room.rpyc", line 72, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/cliffside.rpyc", line 11, in script call
  File "locations/tsuyu_room.rpyc", line 72, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/tsuyu_room.rpyc", line 72, in script call
  File "locations/back_alley_1.rpyc", line 162, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/school_yard.rpyc", line 12, in script call
  File "locations/convenient_store.rpyc", line 36, in script call
  File "locations/ochaco_hallway.rpyc", line 5, in script call
  File "locations/convenient_store.rpyc", line 36, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/mc_locker.rpyc", line 11, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/mc_locker.rpyc", line 11, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/lab.rpyc", line 79, in script call
  File "locations/back_alley_1.rpyc", line 162, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/teacher_lounge.rpyc", line 5, in script call
  File "locations/teacher_lounge.rpyc", line 5, in script call
  File "locations/teacher_lounge.rpyc", line 5, in script call
  File "locations/school_hallway.rpyc", line 33, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/teacher_lounge.rpyc", line 5, in script call
  File "locations/teacher_lounge.rpyc", line 5, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/bedroom.rpyc", line 201, in script call
  File "locations/classroom.rpyc", line 34, in script call
  File "locations/school_gate.rpyc", line 28, in script call
  File "locations/park.rpyc", line 47, in script call
  File "locations/beach.rpyc", line 28, in script call
  File "locations/main_street.rpyc", line 8, in script call
  File "locations/main_street.rpyc", line 8, in script call
  File "locations/training_ground.rpyc", line 63, in script call
  File "ho games/ho_start.rpyc", line 29, in script
  File "renpy/ast.py", line 2259, in execute
  File "renpy/ast.py", line 2241, in call
  File "renpy/statements.py", line 342, in call
  File "renpy/common/000statements.rpy", line 670, in execute_call_screen
  File "renpy/exports.py", line 3347, in call_screen
  File "renpy/ui.py", line 299, in interact
  File "renpy/display\core.py", line 3587, in interact
  File "renpy/display\core.py", line 4060, in interact_core
  File "renpy/display\core.py", line 684, in visit_all
  File "renpy/display\core.py", line 684, in visit_all
  File "renpy/display\core.py", line 684, in visit_all
  File "renpy/display\screen.py", line 476, in visit_all
  File "renpy/display\core.py", line 4060, in <lambda>
  File "renpy/display\screen.py", line 487, in per_interact
  File "renpy/display\screen.py", line 680, in update
  File "game/ho games/ho_start.rpy", line 48, in execute
  File "game/ho games/ho_start.rpy", line 48, in execute
  File "game/ho games/ho_start.rpy", line 49, in execute
  File "game/ho games/ho_start.rpy", line 49, in <module>
NameError: name 'game_bg' is not defined
I've uploaded the public version for 0.27. This should fix almost, if not all inventory related bugs, and some others too.

Anyway, thanks for the support even after a long hiatus. I'm aware that the game is a bit of a mess with all the errors and soft locking in places, and not balanced, which is why we'll abandon the current code base in about 2 updates. This was written when I still knew pretty much nothing about Renpy, and it didn't age well at all.

This, plus wanting to try out all sort of things and mechanics, lead to an unstable game. We're already working on a V2, which will simplify and future-proof a lot of thing. Gameplay will focus onto one thing, which is the hidden-objects genre. You play a stage, then view a scene to advance the story. If you don't like that kind of game, you can opt to skip that portion and just read the story like a VN.
Found this when Mei's lab gets blown up by robots so that quest sequence keeps repeating even after clicking ignore.
 
Last edited:

yilkin

dl.rpdl.net
Donor
Feb 23, 2023
8,973
4,918
REHeroAcademia-0.27.3
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.

We're doing a funding run! !​
 

order666

Newbie
Mar 23, 2017
24
5
After mei's robots escape and i'm prompted to go to the park, the scene plays out. But after the dialogue between MC and the robot, there's no option to fight or do anything with the robot. It just kinda sits there, and the regular UI pops back up. If i go back to the park, or enter then exit a menu, the sequence repeats itself. About half the time the robot just stays there floating, the other times it disappears.
 

Vitklim

Active Member
Feb 22, 2018
822
1,134
Nice to see the proper 0.28 release is here, but it's certainly not bug free. I managed to run into a bug where right click began to rollback for some reason instead of entering the menu. No idea what triggered it, but I managed to fix it by going back to the MC's room. Otherwise, something's weird with the quest triggers, the massage option for Ochaco after the training is greyed out, yet the event is still running, preventing you from leaving the building. If not for the rollback, it would be a softlock.
 
3.00 star(s) 6 Votes