DA22

Devoted Member
Jan 10, 2018
8,099
16,724
893
im not using dark mind though ? isn't that a lewd mod ? also do you happen to know if there is any incest so far ? there's a tag for it but no action so far for me , ty in advance !
Without having the Dark Mind mod installed, you miss out on the incest scenes. With it installed you can still skip some scenes if they would make you uncomfortable.
 

FlipTopBin

Member
Game Developer
Dec 5, 2017
177
225
176
How I fixed the KeyError: u'mcmm' error at the start of Day 3

I had played Chapter one and was excited to play chapter 2. I loaded the previous save without errors and started the game but after the first two images I got this error:

You don't have permission to view the spoiler content. Log in or register now.

No amount of ignoring or rolling back would fix it and I couldn't find a fix in this thread other than trying to create a new save and hope that it worked so I delved a little deeper and found that this seems to be a Renpy issue. The stuff which is giving the error as correctly defined in the code but Renpy doesn't seem to be calling the initialisation code when it should. To fix that I forced Renpy to run make the definitions active through the console. Here are the steps I used:

1> Enable the console in the usual way
2> Load your previous save and start chapter two

I had a problem that after the first attempt the option to load an old save had gone away. To fix that and bring the option back go to the console and enter this:

persistent.first_start = False

3> Go to the console and look at the values of the relevant variables which appears to force Renpy to create the definitions. So, open the console and type in these commands:

mm
mcmm
mcmmm

4> Close the console and everything should work now. At least you should get a little further :)
 
  • Like
Reactions: Dirk_Diggla

popfan

Member
Dec 31, 2018
120
27
91
Chapter 7 - phone chat with Sloth is massively broken - errors from line 1700 to who knows

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/functions/phone/phone.rpy", line 32, in execute
File "game/functions/phone/phone.rpy", line 32, in execute
File "game/functions/phone/phone.rpy", line 41, in execute
File "game/functions/phone/phone.rpy", line 52, in execute
File "game/functions/phone/phone.rpy", line 58, in execute
File "game/functions/phone/phone.rpy", line 58, in <module>
KeyError: u'Crazynurse'

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

Full traceback:
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\bootstrap.py", line 313, in bootstrap
renpy.main.main()
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\main.py", line 520, in main
run(restart)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\main.py", line 139, in run
renpy.execution.run_context(True)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\execution.py", line 885, in run_context
context.run()
File "Days/Day7/d7_main.rpyc", line 2043, in script
File "Days/Day7/d7_main.rpyc", line 2043, in script
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\ast.py", line 688, in execute
renpy.exports.say(who, what, interact=self.interact, *args, **kwargs)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\exports.py", line 1313, in say
who(what, *args, **kwargs)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\character.py", line 1120, in __call__
self.do_display(who, what, cb_args=self.cb_args, **display_args)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\character.py", line 840, in do_display
**display_args)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\character.py", line 589, in display_say
rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\ui.py", line 289, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 2687, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 3071, in interact_core
root_widget.visit_all(lambda i : i.per_interact())
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\screen.py", line 424, in visit_all
callback(self)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 3071, in <lambda>
root_widget.visit_all(lambda i : i.per_interact())
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\screen.py", line 434, in per_interact
self.update()
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\screen.py", line 619, in update
self.screen.function(**self.scope)
File "game/functions/phone/phone.rpy", line 32, in execute
File "game/functions/phone/phone.rpy", line 32, in execute
File "game/functions/phone/phone.rpy", line 41, in execute
File "game/functions/phone/phone.rpy", line 52, in execute
File "game/functions/phone/phone.rpy", line 58, in execute
File "game/functions/phone/phone.rpy", line 58, in <module>
KeyError: u'Crazynurse'

Windows-8-6.2.9200
Ren'Py 7.1.4.1245
Ecchi Sensei Day_7
Tue Mar 26 07:39:56 2019
 

popfan

Member
Dec 31, 2018
120
27
91
Chapter 7 - phone chat with Sloth is massively broken - errors from line 1700 to who knows

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/functions/phone/phone.rpy", line 32, in execute
File "game/functions/phone/phone.rpy", line 32, in execute
File "game/functions/phone/phone.rpy", line 41, in execute
File "game/functions/phone/phone.rpy", line 52, in execute
File "game/functions/phone/phone.rpy", line 58, in execute
File "game/functions/phone/phone.rpy", line 58, in <module>
KeyError: u'Crazynurse'

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

Full traceback:
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\bootstrap.py", line 313, in bootstrap
renpy.main.main()
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\main.py", line 520, in main
run(restart)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\main.py", line 139, in run
renpy.execution.run_context(True)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\execution.py", line 885, in run_context
context.run()
File "Days/Day7/d7_main.rpyc", line 2043, in script
File "Days/Day7/d7_main.rpyc", line 2043, in script
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\ast.py", line 688, in execute
renpy.exports.say(who, what, interact=self.interact, *args, **kwargs)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\exports.py", line 1313, in say
who(what, *args, **kwargs)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\character.py", line 1120, in __call__
self.do_display(who, what, cb_args=self.cb_args, **display_args)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\character.py", line 840, in do_display
**display_args)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\character.py", line 589, in display_say
rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\ui.py", line 289, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 2687, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 3071, in interact_core
root_widget.visit_all(lambda i : i.per_interact())
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\screen.py", line 424, in visit_all
callback(self)
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\core.py", line 3071, in <lambda>
root_widget.visit_all(lambda i : i.per_interact())
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\screen.py", line 434, in per_interact
self.update()
File "D:\Tor Browser\Browser\Game\EcchiSensei-Day_7-Final\renpy\display\screen.py", line 619, in update
self.screen.function(**self.scope)
File "game/functions/phone/phone.rpy", line 32, in execute
File "game/functions/phone/phone.rpy", line 32, in execute
File "game/functions/phone/phone.rpy", line 41, in execute
File "game/functions/phone/phone.rpy", line 52, in execute
File "game/functions/phone/phone.rpy", line 58, in execute
File "game/functions/phone/phone.rpy", line 58, in <module>
KeyError: u'Crazynurse'

Windows-8-6.2.9200
Ren'Py 7.1.4.1245
Ecchi Sensei Day_7
Tue Mar 26 07:39:56 2019

Looks like reloading the game save - fixed the issue
 

morpheusahrms

Active Member
Sep 11, 2017
987
1,924
317
Nice and (relatively) meaty as always, but I hope he starts to reign in the new chars a bit from here on. Too many gals without soo much difference that ultimately wont get a lot of attention. Better to deepen some of the stuff that is already there and concentrate on that. Not to say to have nobody new, but maybe just one per chapter? ;-)
Same goes for weird shady Ninja/Yakuza Organisations. Two are enough really lol. At least come up with something different then. Time Travellers, Lizard People or whatever. What are those weird Japanese Demons called, if he wants to keep it straight Nippon?
 
  • Like
Reactions: IceBearApproves

a1fox3

Loving Family Member's
Donor
Respected User
Aug 8, 2017
25,006
17,554
1,038
Chapter 7 - phone chat with Sloth is massively broken - errors from line 1700 to who knows

I'm sorry, but an uncaught exception occurred.

You don't have permission to view the spoiler content. Log in or register now.
Load your day 6 save in day 7 then make a save in day 7, restart the game and load this new save and see if that fix it for you.
 

fortuna95

Lezz kiss for peace!
Donor
Feb 7, 2018
3,944
19,619
750
I think it's enough too with the new girls. I can't barely remember because we have ~60 girls now. Little too much, imo! Although i like the new Ellie much and hope to make join her at school.
I have a suggestion here: i like to see an overview about all the girls at smartphone, because there are just so many!
But please don't forget Hana, it was mentioned at 1st day to visit her at swimming and nothing happend so far.

Way to go BlueCat!
 

DarkSithLord47

Well-Known Member
Mar 10, 2019
1,040
4,459
451

For those with bad memory^^
thats a lot of fucking girls lol,kinda feel ''bad'' for the mc now,he's gotta ''take care'' of all of them... how the hell are we gonna do that? the mc needs to grow a few more dicks to handle 2-3 at a time :))
 

a1fox3

Loving Family Member's
Donor
Respected User
Aug 8, 2017
25,006
17,554
1,038
thats a lot of fucking girls lol,kinda feel ''bad'' for the mc now,he's gotta ''take care'' of all of them... how the hell are we gonna do that? the mc needs to grow a few more dicks to handle 2-3 at a time :))
There are at least 7 that will not be in the harem because 1 to young (9yo) or there from the past. 2 of them the body guards also may not see them in the harem either.
So we are left with 43-46 girls so far.
 

FroKe88

Member
May 15, 2017
449
775
319
The next release will be a merge between Day 1 - Day 7 and also includes from the specials every pasttime story.
With the week 1 release we will have a absolutely new stable save system because we invest for now a lot of time just for bugsearch and bugfixes. Week 1 also includes a bunch of new features, and we overhaul the whole GUI. Also the dialogue improvements which started at Day 3 need to be improved for Day 1 + 2.

Over 2k images are gonna be redesigned and a lot of other stuff is on the list.
I create a public patreon post where you can see all changes that happen in Week 1. Also at the patreon page the release date for week 1 in the next few days.

After Week 1 release we work for Day 8+9.
Could you maybe add an revised walktrough/decision-tree too? <3
 

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,426
9,716
630
The next release will be a merge between Day 1 - Day 7 and also includes from the specials every pasttime story.
With the week 1 release we will have a absolutely new stable save system because we invest for now a lot of time just for bugsearch and bugfixes. Week 1 also includes a bunch of new features, and we overhaul the whole GUI. Also the dialogue improvements which started at Day 3 need to be improved for Day 1 + 2.

Over 2k images are gonna be redesigned and a lot of other stuff is on the list.
I create a public patreon post where you can see all changes that happen in Week 1. Also at the patreon page the release date for week 1 in the next few days.

After Week 1 release we work for Day 8+9.
In an earlier post you said you were going to do a text walkthrough for Week 1. Are you still planning this?

Personally, I'm interested in what early choices will change later on - what happens if I ask for help finding the office on day 1 vs meeting the girl on the roof? What happens if I go right or left when exploring the first night?
 
4.10 star(s) 146 Votes