Dedingovi

Well-Known Member
Jul 1, 2017
1,114
3,746
For those who have already played this new version, can you tell me if there is any new scene with the mother (Rose)?
 

Samhill

Active Member
Nov 2, 2020
640
753
Meh, threw this together...

University Days Unofficial Fan Taboo Improvement Patch v1.4
(For UniDays v0.12 NB)

- This is a simple text replacement patch just drop it in the "game" subfolder. It shouldn't break future versions, but it won't change anything added past current versions content.
- Always call the Landlady by her title (ie "Mom") instead of her name, and her sister as "title + name".
- Case correction for when titles are used as proper nouns or not. (ie addressing landlady as "Mom" vs "my mom"). Note: The patch does not change the case of the roommate's title so you should just type the word "sister" in lower case when asked and it will be correct.
- Maddie is referred to as your cousin (for some reason there was no relationship variable for her)
- Minor increase in taboo dialogue.
- Corrections of some of the worst Engrish and spelling/grammar/etc.
- Correction of wrong character variable being used a few times ie Maddie calling her mom by the same title that you use for her. And your mom using the wrong name for her friend when she shows up at the door one time.

That said, patch still isn't able to do much about the story's lack of taboo feel, with the fast speed/willingness for some characters to want to jump each other without much explanation/hesitation if they're related.

As always with my fan patches, let me know if I missed anything, or broke anything...
Python:
  File "game/script.rpy", line 15264, in script
    mc "Just tell her the truth, [taunt]."
NameError: name 'auntname' is not defined

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

Full traceback:
  File "game/script.rpy", line 15264, in script
    mc "Just tell her the truth, [taunt]."
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\ast.py", line 2579, in execute
    Say.execute(self)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\ast.py", line 621, in execute
    renpy.exports.say(who, what, *args, **kwargs)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\exports\sayexports.py", line 132, in say
    who(what, *args, **kwargs)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\character.py", line 1440, in __call__
    what = self.prefix_suffix("what", self.what_prefix, what, self.what_suffix)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\character.py", line 1354, in prefix_suffix
    return (sub(prefix) + sub(body) + sub(suffix))
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\character.py", line 1334, in sub
    return renpy.substitutions.substitute(s, scope=scope, force=force, translate=translate)[0]
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\substitutions.py", line 373, in substitute
    s = interpolate(s, variables) # type: ignore
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\substitutions.py", line 97, in interpolate
    rv += format(value, fmt)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\character.py", line 1304, in __format__
    return format(str(self), spec)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\character.py", line 1296, in __str__
    rv = renpy.substitutions.substitute(who)[0]
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\substitutions.py", line 373, in substitute
    s = interpolate(s, variables) # type: ignore
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\substitutions.py", line 86, in interpolate
    raise e
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\substitutions.py", line 78, in interpolate
    value = renpy.python.py_eval(code, {}, scope)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\python.py", line 1209, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\python.py", line 1202, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "<none>", line 1, in <module>
NameError: name 'auntname' is not defined

Windows-10-10.0.22631 AMD64
Ren'Py 8.3.4.24120703
University Days S1 Episode 12 Standard Edition 12.2
Fri Feb 21 08:47:12 2025
Python:
  File "game/script.rpy", line 15307, in script
    landlady "[mc]? Is that you?"
NameError: name 'landladyname' is not defined

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

Full traceback:
  File "game/script.rpy", line 15307, in script
    landlady "[mc]? Is that you?"
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\ast.py", line 2579, in execute
    Say.execute(self)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\ast.py", line 621, in execute
    renpy.exports.say(who, what, *args, **kwargs)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\exports\sayexports.py", line 132, in say
    who(what, *args, **kwargs)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\character.py", line 1438, in __call__
    who = self.prefix_suffix("who", self.who_prefix, who, self.who_suffix)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\character.py", line 1354, in prefix_suffix
    return (sub(prefix) + sub(body) + sub(suffix))
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\character.py", line 1334, in sub
    return renpy.substitutions.substitute(s, scope=scope, force=force, translate=translate)[0]
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\substitutions.py", line 373, in substitute
    s = interpolate(s, variables) # type: ignore
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\substitutions.py", line 86, in interpolate
    raise e
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\substitutions.py", line 78, in interpolate
    value = renpy.python.py_eval(code, {}, scope)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\python.py", line 1209, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "C:\Users\[redacted]\Games\UniDays0.12S-12.2-pc\renpy\python.py", line 1202, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "<none>", line 1, in <module>
NameError: name 'landladyname' is not defined

Windows-10-10.0.22631 AMD64
Ren'Py 8.3.4.24120703
University Days S1 Episode 12 Standard Edition 12.2
Fri Feb 21 08:57:13 2025
I removed your mod and I still had the issue.
 
  • Like
Reactions: carmafia

LazyKami

New Member
Aug 9, 2017
1
0
steam releases is currently all sorts of broken.

still renaming the game folder to include version number that is just causing bloat of previous saves and folders ( just keep a static game folder name please)
No saves loading ( for me at least)
The gallery has no way to back out of it so you end up stuck in gallery view
All bonus scenes were removed and require patreon subscription now

And yes Steam only just got episode 12 so guessing it is being kept an episode behind Patreon
You can, you just have to click Esc. (its still a fail on dev side, but yeah)
 

faaapulous

New Member
Feb 10, 2023
8
0
Made a Mod with gallery/replay unlock, renaming and resetting the relationships,
choice hints/WT ( but not really needed) + some more game settings.


=============================================
Feb. 21, 2025
Having some issues with this game release and my Mod functions
I skip this version and check with the next one if I can continue here

Edit: finally found the issue (the compressed game download)
and therefore updated again my Mod for the new game version Ep12.
Be aware the Mod is NOT compatible to the compressed game download!

=============================================


Download Mod v0.12.2/Ep12 (~1MB)
Pixeldrain -

Android port from the game compressed
with integrated Mod v0.12.2/Ep12 (~440MB)
Pixeldrain -
You don't have permission to view the spoiler content. Log in or register now.

Ingame pics of the Mod:
View attachment 3382160 View attachment 3382161 View attachment 3382162 View attachment 3382163
It says you updated your mod, but its breaking the game completely currently
 

cooperdk

Engaged Member
Jul 23, 2017
3,566
5,284
So, as I wrote before, I think there's a problem with the eyes of the characters in the game, especially Landlady's eyes
And so I've photoshopped Landlady's eyes a little bit.
This is due to the developer not being trained enough in Daz. It happens when the renderer and the eye material is not fully compatible, among other situations.
 

bababooi

Newbie
Jun 28, 2017
43
16
If anyone knows, how is the cheating in this? Are any of the LIs doing it (in any sense), or is it just the protagonist, etc?

Asking in a positive sense. Cheating fetish good. (y)
 

Jinyo

Newbie
Apr 20, 2018
79
152
I guess the sandbox part got abandoned? Other than the party scene there are no sandbox elements and many scenes make no sense because because they reference things that never happened.
 
3.00 star(s) 31 Votes