tunechi000

New Member
Nov 17, 2023
3
0
Hello, I have this error, when I start play, and I can’t start play, and ignore doesn’t help.
While running game code:
File "renpy/common/00library.rpy", line 320, in say
who = Character(who, kind=name_only)
TypeError: __init__() got an unexpected keyword argument 'kind'
 

malcolmalbie

Active Member
Oct 8, 2018
759
1,572
Hello, I have this error, when I start play, and I can’t start play, and ignore doesn’t help.
While running game code:
File "renpy/common/00library.rpy", line 320, in say
who = Character(who, kind=name_only)
TypeError: __init__() got an unexpected keyword argument 'kind'
How are you running the game
 

SonsOfLiberty

Discussion Dynamo
Compressor
Sep 3, 2022
26,944
237,572
Goddesses' Whim [v0.4.1] [Ncrow]

COMPRESSED:

Win/Linux:
- - -

Mac:
- - -
 
Last edited:

malcolmalbie

Active Member
Oct 8, 2018
759
1,572
I’m running on iPhone , with program Spark. Downloaded pc version. Full version the error.
Can confirm this is a bug when running the game using Renpy > 8.2.0 (Spark is using 8.2.3)

Ncrow needs to change
Python:
    $ mc = renpy.call_screen("input", prompt="{i}Do you remember your name? Human.\n {size=-10}{i}Default name Ryo{i}.")
    $ mc = mc.strip()

    if not mc:
        $ mc = "Ryo"
to
Python:
    $ mc_name = renpy.call_screen("input", prompt="{i}Do you remember your name? Human.\n {size=-10}{i}Default name Ryo{i}.")
    $ mc_name = mc_name.strip()

    if not mc_name:
        $ mc_name = "Ryo"

    $ mc.name = mc_name
or as a single line version:
Python:
$ mc.name = renpy.call_screen("input", prompt="{i}Do you remember your name? Human.\n {size=-10}{i}Default name Ryo{i}.").strip() or "Ryo"
 
Last edited:

tunechi000

New Member
Nov 17, 2023
3
0
Can confirm this is a bug when running the game using Renpy > 8.2.0 (Spark is using 8.2.3)

Ncrow needs to change
Python:
    $ mc = renpy.call_screen("input", prompt="{i}Do you remember your name? Human.\n {size=-10}{i}Default name Ryo{i}.")
    $ mc = mc.strip()

    if not mc:
        $ mc = "Ryo"
to
Python:
    $ mc_name = renpy.call_screen("input", prompt="{i}Do you remember your name? Human.\n {size=-10}{i}Default name Ryo{i}.")
    $ mc_name = mc_name.strip()

    if not mc_name:
        $ mc_name = "Ryo"

    $ mc.name = mc_name
or as a single line version:
Python:
$ mc.name = renpy.call_screen("input", prompt="{i}Do you remember your name? Human.\n {size=-10}{i}Default name Ryo{i}.").strip() or "Ryo"
Where I need to change?
 

dman909

New Member
May 2, 2022
2
0
I cant get past the quest "good news?" I have to spend time with Natsuki but every time I do she keeps telling me that "the job board will be ready soon, please be patient" what do I do?
 

Looter48

New Member
Mar 20, 2023
1
0
This version can use T2-T3 patreon? I just downloaded it from public version so in tomoe shop didn't have ui to use code
 

Thanman83

Newbie
Dec 8, 2020
43
14
I cant get past the quest "good news?" I have to spend time with Natsuki but every time I do she keeps telling me that "the job board will be ready soon, please be patient" what do I do?
quite many are are stuck there, I also was. You need to keep meeting the girls, at some point a new scene started at the adventurer club place.
 
  • Like
Reactions: dman909
4.40 star(s) 81 Votes