Jan 18, 2018
333
325
For the first one:
vim EcchiSensei.sh
:set ff=unix
:wq
Issue is it has DOS line endings. You'll occasionally run across this in RenPy games on here.

For the second one:
Go to the first page
Click "Older versions"
Get the Dark Mind patch from there for Week 1
Unlike single/double day releases, the Week 1 version doesn't have the images to go with Dark Mind, so you need the Week 1 specific patch (that's around 2.5gb). Presume this is done to further cut down the download size as well as make it acceptable by Steam (iirc they mentioned intending a Steam release).
>Click "Older versions"
I downloaded "EcchiSensei-Week_1-light_compressed"
Well, the linux build is now working, but.....
The same error of windows build.
screenshot0002.png
 

avn10.6.8

Member
Jul 30, 2017
119
13
Latecomer same issues with the Mac version of day 8-9 as before:

  1. The app is quarantined
  2. The script that the app launches has dos line endings
To fix #1:
  1. open Terminal
  2. cd to EcchiSensei-D8+9v1.0
  3. xattr -l EcchiSensei.app
  4. It should spit out something like com.apple.quarantine: 0081;5d9ca0ff;Firefox;
  5. xattr -rd com.apple.quarantine EcchiSensei.app
  6. now xattr -l EcchiSensei.app should not print anything
To fix #2:
  1. open Terminal
  2. cd to EcchiSensei-D8+9v1.0
  3. vi EcchiSensei.app/Contents/MacOS/EcchiSensei
  4. now, type this exactly, without the leading numbers, but with the leading colon:
    1. :set ff=unix
    2. :wq
Explain this to me like i'm idiot because i am and i don't really know how to use terminal. I am using a macintosh
 

Hones

Forum Fanatic
Game Compressor
Aug 10, 2018
4,155
8,596
>Click "Older versions"
I downloaded "EcchiSensei-Week_1-light_compressed"
Well, the linux build is now working, but.....
The same error of windows build.
View attachment 423318
Have you install the week 1 DM patch? I think that's what is causing your missing image error.
Get the patch from the link below (you want the one highlighted in the image)
Patches:
 
Jan 18, 2018
333
325
Have you install the week 1 DM patch? I think that's what is causing your missing image error.
Get the patch from the link below (you want the one highlighted in the image)
Patches:
Downloading.
 

Hones

Forum Fanatic
Game Compressor
Aug 10, 2018
4,155
8,596
There seems to be a ton of missing images in the full version. Did I mess something up or is that happening for anyone else?
You mean Week 1 Full? You need to install the DM Patch (see the quote below)
Have you install the week 1 DM patch? I think that's what is causing your missing image error.
Get the patch from the link below (you want the one highlighted in the image)
Patches:
 

Xypher

Well-Known Member
May 1, 2017
1,221
1,329
Finished the latest update.

Mao is alot hotter now

I love Crazy Nurse! hope we can explore more deprave scenes with her and her subjects.
 
  • Like
Reactions: GbolnHunter

taler

Well-Known Member
Oct 5, 2017
1,490
1,137
This is honestly so shit. Why does day 8+9 not contain week 1 content? I got totally spoiled for week 1 shit wtf?!
 

Mortimilian

Newbie
Jun 8, 2018
87
185
Apologies if this has been brought up a thousand times before, but I'm having a problem with the Dark Mind patch. Since I'm starting the game from scratch, it's loading all the correct dialogue for the dark minds version, but it's not loading the images. It just says "Image [1058] not found" in the top left corner. Is there any way I can fix this?
 

taler

Well-Known Member
Oct 5, 2017
1,490
1,137
Because day 8+9 is week 2....
If the eventual full week 2 download included week 1 it would be over 30GB
Most games these days are like 100 GB. 30GB is small. It's the first download on the OP but it's not the correct one. Complete fail I was so confused when playing.
 

Virulenz

Engaged Member
Sep 27, 2017
2,821
3,534
hmm...i unpacked and redownloaded it twice with the same errors (yes, Final + DM)...but since noone else is complaining i think its just the german part. I got 2 little errors in the beginning (mao kicher and another one before, didnt remember it now because "ignore" worked there) and a deadend with the phone in the classroom. The SMS worked fine, but if you want to close the phone it spams errors, beginning with missing Aki head picture and many more...i clicked over 15 minutes rapidly on ignore and no end in sight...
Example:
Code:
I'm sorry, but an uncaught exception occurred.

While loading <'Image' u'heads/aki.png'>:
  File "renpy/common/000statements.rpy", line 416, in execute_pause
    renpy.pause()
IOError: Couldn't find file 'heads/aki.png'.

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

Full traceback:
  File "Days/D8+9.rpyc", line 3137, in script
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\ast.py", line 1907, in execute
    self.call("execute")
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\ast.py", line 1895, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\statements.py", line 220, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 416, in execute_pause
    renpy.pause()
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\exports.py", line 1457, in pause
    rv = renpy.ui.interact(mouse='pause', type='pause', roll_forward=roll_forward)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\ui.py", line 289, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\core.py", line 2690, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\core.py", line 3174, in interact_core
    self.draw_screen(root_widget, fullscreen_video, (not fullscreen_video) or video_frame_drawn)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\core.py", line 2086, in draw_screen
    renpy.config.screen_height,
  File "render.pyx", line 516, in renpy.display.render.render_screen
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\screen.py", line 669, in render
    child = renpy.display.render.render(self.child, w, h, st, at)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 1572, in render
    cwidth, cheight = sizeit('c', width, height, 0, 0)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 1567, in sizeit
    rend = render(pos_d[pos], width, height, st, at)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\viewport.py", line 552, in render
    rend = renpy.display.render.render(self.children[0], child_width, child_height, st, at)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 883, in render
    surf = render(d, rw, height - y, cst, cat)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "accelerator.pyx", line 110, in renpy.display.accelerator.transform_render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\im.py", line 580, in render
    return cache.get(self, render=True)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\im.py", line 266, in get
    surf = image.load()
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\im.py", line 625, in load
    surf = renpy.display.pgrender.load_image(renpy.loader.load(self.filename), self.filename)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\loader.py", line 576, in load
    raise IOError("Couldn't find file '%s'." % name)
IOError: Couldn't find file 'heads/aki.png'.

Windows-7-6.1.7601-SP1
Ren'Py 7.2.1.457
Ecchi Sensei  D8+9 v1.0
Wed Oct 09 00:53:24 2019
...many ignore clicks later
Code:
I'm sorry, but an uncaught exception occurred.

While loading <'FactorScale' <'Image' u'images/phone/pics/d7_gotcha.png'> 0.15 0.23 True>:
AttributeError: 'Side' object has no attribute 'cwidth'

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

Full traceback:
  File "Days/D8+9.rpyc", line 3425, in script
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\ast.py", line 690, in execute
    renpy.exports.say(who, what, *args, **kwargs)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\exports.py", line 1322, in say
    who(what, *args, **kwargs)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\character.py", line 1127, in __call__
    self.do_display(who, what, cb_args=self.cb_args, **display_args)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\character.py", line 842, in do_display
    **display_args)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\character.py", line 591, in display_say
    rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\ui.py", line 289, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\core.py", line 2690, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\core.py", line 3174, in interact_core
    self.draw_screen(root_widget, fullscreen_video, (not fullscreen_video) or video_frame_drawn)
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\core.py", line 2086, in draw_screen
    renpy.config.screen_height,
  File "render.pyx", line 516, in renpy.display.render.render_screen
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\screen.py", line 669, in render
    child = renpy.display.render.render(self.child, w, h, st, at)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 722, in render
    surf = render(child, width, height, cst, cat)
  File "render.pyx", line 151, in renpy.display.render.render
  File "render.pyx", line 244, in renpy.display.render.render
  File "Q:\_Patreons\EcchiSensei-D8+9\renpy\display\layout.py", line 1592, in render
    cwidth = self.cwidth
AttributeError: 'Side' object has no attribute 'cwidth'

Windows-7-6.1.7601-SP1
Ren'Py 7.2.1.457
Ecchi Sensei  D8+9 v1.0
Wed Oct 09 00:55:41 2019
Well, now i try to restart and play it in english...if the same error occurs i give up and wait for a proper release with working savegames and so on...
 
  • Like
Reactions: Zontany

Hones

Forum Fanatic
Game Compressor
Aug 10, 2018
4,155
8,596
Most games these days are like 100 GB. 30GB is small. It's the first download on the OP but it's not the correct one. Complete fail I was so confused when playing.
Most games on this site over ~1-2GB get constant requests for a compressed version, most users here will not download large files. What do you mean not the correct one all downloads a labled Week 1 is obviously in the spoiler under Week 1, the most recent release (days 8+9) is the first one at the top. Why would you be confused though the folder and title screen tell you it is Days 8+9.
 

Hones

Forum Fanatic
Game Compressor
Aug 10, 2018
4,155
8,596
Apologies if this has been brought up a thousand times before, but I'm having a problem with the Dark Mind patch. Since I'm starting the game from scratch, it's loading all the correct dialogue for the dark minds version, but it's not loading the images. It just says "Image [1058] not found" in the top left corner. Is there any way I can fix this?
Did you install the correct patch? It should be around 2GB
See these instructions - https://f95zone.to/threads/ecchi-sensei-day-8-9-final-bluecat.14927/post-2496131
 

Mortimilian

Newbie
Jun 8, 2018
87
185
Did you install the correct patch? It should be around 2GB
See these instructions - https://f95zone.to/threads/ecchi-sensei-day-8-9-final-bluecat.14927/post-2496131
Thanks. I hadn't noticed the "show previous versions" button.

Most games these days are like 100 GB. 30GB is small. It's the first download on the OP but it's not the correct one. Complete fail I was so confused when playing.
Most VNs are not anywhere near as big as this one. Speaking for myself, I wouldn't have downloaded this game if there wasn't a compressed version.
 
  • Like
Reactions: AdmirationJunky

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,426
9,685
Explain this to me like i'm idiot because i am and i don't really know how to use terminal. I am using a macintosh
:ROFLMAO:

You know the difference between stupidity and ignorance? Ignorance is a lack of knowledge; it can be fixed. Stupidity is permanent! You're just ignorant, not an idiot!

In Applications there's a folder called Utilities. In that folder there's an app - Terminal.app. Run it, and you get a window to type commands in. Here's a good intro to it: .

First, change directories to where you have Ecchi Sensei installed. You can type cd, then a space, then drag the folder to the terminal window, then hit enter.

The first issue I had was the app was quarantined, so Gatekeeper won't let it run. Fix it with this command:
xattr -rd com.apple.quarantine EcchiSensei.app

The second issue I had was the file that gets run first is in dos format, not in Mac/Linux/Unix format. You fix that by running this command:
vi EcchiSensei.app/Contents/MacOS/EcchiSensei

That will open up the "vi" editor. Inside vi run these commands:
:set ff=unix
:wq

Then type exit to exit the Terminal window, then quit.
 

TJ03

Newbie
Jan 20, 2018
96
191
is there any real diference story wise between the alpha and final version, or just lot little things added, aka id's and such
 

Virulenz

Engaged Member
Sep 27, 2017
2,821
3,534
Alpha = Testversion
Beta = Bugfix Version
Final = Final if no major Bugs are found...its like Fanpatched Versions of Studio-Games...with the difference that the Dev here is making them himself ^^
Mostly there is no additional Content...just less Bugs and Errors ^^

P.S:
The german Version is definitively broken...the Phone didnt work and is not skipable/ignoreable. With English language it works so far without any Problems...so even if it is the final english version, the german version is pre-alpha ^^
 
Last edited:
4.10 star(s) 145 Votes