What do you prefer larger or smaller updates?

  • Bigger

    Votes: 288 94.4%
  • Smaller

    Votes: 23 7.5%

  • Total voters
    305
  • Poll closed .
Sep 3, 2020
4,110
25,290
- The second picture is in his uncle's bedroom. Right below next to the chest of drawers on which there is a photo.
- There is a soda can in the pantry. You get 2 energy bars for that
- You'll find an energy bar on a chair in the dining room.
thank you for finding energy it's really hard I hope MrKuchi can put something in the game to help like a guide or Infinite Energy

I already have a hard time because of my reading disability
 
  • Like
Reactions: MrKuchi and Max1276

Valmora

Member
Dec 4, 2018
261
221
WOW ! Literally after starting, the "NAME MC" click and POOF this happens...

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/script.rpy", line 31, in script call
call relation from _call_relation
File "game/script.rpy", line 31, in script call
call relation from _call_relation
ScriptError: could not find label 'relation'.

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

Full traceback:
File "game/script.rpy", line 31, in script call
call relation from _call_relation
File "renpy/ast.py", line 1490, in execute
rv = renpy.game.context().call(label, return_site=self.next.name)
File "game/script.rpy", line 31, in script call
call relation from _call_relation
File "renpy/script.py", line 918, in lookup
raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'relation'.

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
On my way home 0.3
Wed Jan 19 07:03:46 2022
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,088
6,015
WOW ! Literally after starting, the "NAME MC" click and POOF this happens...

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/script.rpy", line 31, in script call
call relation from _call_relation
File "game/script.rpy", line 31, in script call
call relation from _call_relation
ScriptError: could not find label 'relation'.

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

Full traceback:
File "game/script.rpy", line 31, in script call
call relation from _call_relation
File "renpy/ast.py", line 1490, in execute
rv = renpy.game.context().call(label, return_site=self.next.name)
File "game/script.rpy", line 31, in script call
call relation from _call_relation
File "renpy/script.py", line 918, in lookup
raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'relation'.

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
On my way home 0.3
Wed Jan 19 07:03:46 2022
Screenshot_3.png


idk what script you use but ...
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,088
6,015
0x52_URM cheats (WIP)

mc stats/energy

Screenshot_4.png

extract attached file to *\game folder
!always save before edit!

open mod with alt+m
click the little open folder icon right upper
load a .urm file

how to use : Link

Rename (nearly) everyone,watch this tut ->>

create your own "gallery" (label search) how to --> Link



i recommend always to play the game one time without cheats to understand gamemechanics

mod should work with future updates

this mod does not modify any game files

!use at own risk! - dont complain to dev´s /modder about broken saves/gamestates
(look for a updated 0x52_urm.rpa file every month or 2 at Link, thanks to 0x52
if you like the URM Mod consider support 0x52 -->
)
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,088
6,015
thank you for finding energy it's really hard I hope MrKuchi can put something in the game to help like a guide or Infinite Energy

I already have a hard time because of my reading disability
0x52_URM cheats (WIP)

mc stats/energy

View attachment 1605577

extract attached file to *\game folder
!always save before edit!

open mod with alt+m
click the little open folder icon right upper
load a .urm file

how to use : Link

Rename (nearly) everyone,watch this tut ->>

create your own "gallery" (label search) how to --> Link



i recommend always to play the game one time without cheats to understand gamemechanics

mod should work with future updates

this mod does not modify any game files

!use at own risk! - dont complain to dev´s /modder about broken saves/gamestates
(look for a updated 0x52_urm.rpa file every month or 2 at Link, thanks to 0x52
if you like the URM Mod consider support 0x52 -->
)
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,088
6,015
I didn't use any "script", I literally just downloaded the game and started to play it, the first screen "NAME MC", gave mc a name and that's literally the next thing that pops up... I didn't alter or edit some script if that's what your trying to suggest...
:unsure:

well

the script has no line 31 like in your traceback shown , so im wondering
maybe try a other dl source?
 

Valmora

Member
Dec 4, 2018
261
221
View attachment 1605573


idk what script you use but ...
This is the scrip that the game has from being just downloaded, so its evidently broken or someone modded it and replaced it

label playername:
define mc = Character("[name]", color="#0262b5")
define p = Character("Teacher", color="#7a008c")
define z = Character("Zoe", color="#51f5ef")
define j = Character("Jacob", color="#ff5500")
define dir = Character("Principal Miller", color="#332314")
define v = Character("Vania", color="#f21000")
define unc = Character("Uncle Mike", color="#f5ed0f")
define pa = Character("Patrick", color="#036b29")
define me = Character("Melissa", color="#8422e6")
define em = Character("Emma", color="#00e851")
define ke = Character("Kevin", color="#825712")
define el = Character("Elizabeth", color="#1bf283")
define wi = Character("Will", color="#d12317")
define g1 = Character("Girl 1", color="#1DFF40")
define g = Character("Girl 2", color="#00EAFF")
define a = Character("Ashley", color="#E622BB")
define per = Character("Person", color="#E622BB")
$ name = renpy.input("What is your name?", length=32)
$ name = name.strip()
if name == "":
jump playername
return
label start:
scene black with fade
label playername1:
$ name = renpy.input("What is your name?", length=15)
$ name = name.strip()
if name == "":
jump playername1
call relation from _call_relation
call character from _call_character
$ persistent.name = name
 
  • Like
Reactions: MrKuchi

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,088
6,015
This is the scrip that the game has from being just downloaded, so its evidently broken or someone modded it and replaced it

label playername:
define mc = Character("[name]", color="#0262b5")
define p = Character("Teacher", color="#7a008c")
define z = Character("Zoe", color="#51f5ef")
define j = Character("Jacob", color="#ff5500")
define dir = Character("Principal Miller", color="#332314")
define v = Character("Vania", color="#f21000")
define unc = Character("Uncle Mike", color="#f5ed0f")
define pa = Character("Patrick", color="#036b29")
define me = Character("Melissa", color="#8422e6")
define em = Character("Emma", color="#00e851")
define ke = Character("Kevin", color="#825712")
define el = Character("Elizabeth", color="#1bf283")
define wi = Character("Will", color="#d12317")
define g1 = Character("Girl 1", color="#1DFF40")
define g = Character("Girl 2", color="#00EAFF")
define a = Character("Ashley", color="#E622BB")
define per = Character("Person", color="#E622BB")
$ name = renpy.input("What is your name?", length=32)
$ name = name.strip()
if name == "":
jump playername
return
label start:
scene black with fade
label playername1:
$ name = renpy.input("What is your name?", length=15)
$ name = name.strip()
if name == "":
jump playername1
call relation from _call_relation
call character from _call_character
$ persistent.name = name
delete that line : call relation from _call_relation
make sure it looks like this after :
Screenshot_1.png

i redownloaded from mega to check - the script is ok there :unsure:
 
  • Like
Reactions: MrKuchi

Valmora

Member
Dec 4, 2018
261
221
:unsure:

well

the script has no line 31 like in your traceback shown , so im wondering
maybe try a other dl source?
lol... um yea that's not how the internet works, the internet nor where you download it from doesn't some how magically change the contents of a zip-file, or randomly change text within a document...
As i said it's that way from the download, so whoever the uploaded it, broke it or it's broken from the creator...
 
  • Like
Reactions: MrKuchi

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,088
6,015
lol... um yea that's not how the internet works, the internet nor where you download it from doesn't some how magically change the contents of a zip-file, or randomly change text within a document...
As i said it's that way from the download, so whoever the uploaded it, broke it or it's broken from the creator...
btw

theres a proofread script file

proofread script for v0.3

did a quick proofread (maybe missed 2 or 3 things like a " . " )

extract attached file into *\game folder
overwrite if asked
 
  • Like
Reactions: MrKuchi
Sep 3, 2020
4,110
25,290
delete that line : call relation from _call_relation
make sure it looks like this after :
View attachment 1605585

i redownloaded from mega to check - the script is ok there :unsure:
I have a question in the last seen the MC fainted in his room

and Vania was the only one with him but when he woke up he had two girls in his bed

and the mc he didn't ask how they got there

sometimes it's hard to tell if we're in the past or the present

or the future

maybe if we're having a dream ! It should be in black and white or
 
  • Like
Reactions: MrKuchi

Raziel_8

Engaged Member
Dec 4, 2017
3,426
8,598
don't get me wrong waking up to.Vania is a dream come true

and it makes sense since she was there when we fainted

she took care of us and spend the night to make sure we are alright but where the hell did she come from

trust me I know I'm really stupid but
View attachment 1605726
If i had to guess, Vania panicked as MC fainted and called Zoe, likely she thought Zoe knew more about MC's disease.
Apparently MC was unconscious for a longer time.

MrKuchi please tell me there will be a ginger LI, every game needs gingers.
 
Last edited:
Sep 3, 2020
4,110
25,290
If i had to guess, Vania panicked as MC fainted and called Zoe, likely she thought Zoe knew more about MC's disease.
Apparently MC was unconscious for a longer time.

MrKuchi please tell me there will be a ginger LI, every game needs gingers.
yeah that makes sense but that still doesn't explain why he's not surprised to see her in his bed

maybe mc woke up in the middle of the night

I don't know
it's so confusing
 
4.00 star(s) 41 Votes