ArcanusLK

Newbie
May 10, 2020
95
208
197
It is avoidable, did you try and read the new dialogue. You mix what you already knew from the old versio of the game with the new. If you play this for the first time and choose to skip, what actually happens when they sleep is unknown and up to the player to fill in.
It is not avoidable. After mother and son sleep, Zed thinks these words:
You don't have permission to view the spoiler content. Log in or register now.
In other words, you just choose whether or not you want to see what happened. Saying it's avoidable is the same thing as saying it doesn't happen. And saying that it's up to the player to fill in what happens is insulting their intelligence because it's clear what happens considering what was said by Zed.

Choosing not to see what happens (which was clearly said by Zed) is just being skippable, not avoidable. You just choose not to see what happens in scene seven and not change what happens in this scene. It seems like you don't know what the difference is between skipable and avoidable.
 
Last edited:

INNERBLADE

Member
Game Developer
Feb 21, 2020
279
5,532
548
It is not avoidable. After mother and son sleep, Zed thinks these words:
You don't have permission to view the spoiler content. Log in or register now.
In other words, you just choose whether or not you want to see what happened. Saying it's avoidable is the same thing as saying it doesn't happen. And saying that it's up to the player to fill in what happens is insulting their intelligence because it's clear what happens considering what was said by Zed.

Choosing not to see what happens (which was clearly said by Zed) is just being skippable, not avoidable. You just choose not to see what happens in scene seven and not change what happens in this scene. It seems like you don't know what the difference is between skipable and avoidable.
Ah good point about Zed's dialogue I missed that. Will fix it in the new version. Thanks
 

INNERBLADE

Member
Game Developer
Feb 21, 2020
279
5,532
548
TO interbladecard
New bug found:
At the end of act02scene08nontr.rpy there is no jump a04s01_start

I think the first part of act06s01b.rpy with Bobby should be at the start of act06s01a.rpy. Because the doctor teaches him that he must not wet his casts and in act06s01a.rpy, he tells Monica that the doctor told him not to wet them.
thanks made the changes to the code and changed the dialogue to make sense
 
  • Like
Reactions: joelurmel

joelurmel

Engaged Member
Nov 3, 2022
2,713
4,768
397
To interbladecard (sorry to bother you ;) )

Gross typo at each beginning at all act2's
centered"{size=35}ACT TWO:{size=30} A Night at the Dessert{i} <- double ss
instead of
centered"{size=35}ACT TWO:{size=30} A Night at the Desert{i}
 
  • Like
Reactions: INNERBLADE

joelurmel

Engaged Member
Nov 3, 2022
2,713
4,768
397
To interbladecard :

Another error in Scene_00.rpy.
If you hit return at the name request, you go back to the main menu...
You have to delete the tab before jump a01s01_start to solve.

And a suggestion:
$ tempname = renpy.input("{b}What is your name? default: [mcname]{/b}").strip()
if tempname != "":
$ mcname = tempname[0].upper() + tempname[1:] if tempname else ''
$ umcname = tempname.upper()

The first treatment is to have the first letter in upper case and the 2nd to have the MC name in full upper case when Sophia screams
 
Last edited:
  • Like
Reactions: INNERBLADE

joelurmel

Engaged Member
Nov 3, 2022
2,713
4,768
397
to interbladecard :

a suggestion for the act02scene04.rpy line 104, replace:
scene xxx001b with dissolve
scene xxx001c with dissolve
scene xxx001b with dissolve
scene xxx001c with dissolve
scene xxx001b with dissolve
scene xxx001c with dissolve
scene xxx001b with dissolve
scene xxx001c with dissolve
scene xxx001b with dissolve
scene xxx001c with dissolve

with
image xxx001c_b:
"xxx001b"
pause 0.35
"xxx001c"
pause 0.35
repeat

scene xxx001c_b with dissolve
mc_mlou "{size=+10}I'M IN HEAVEN!!!!"

Which is more elegant (maybe you have to adjust the pause) and allow some to jerk off :cool:

another suggestion for act01scene02.rpy line 441
replace

scene dickclose with dissolve
sop "D..d..dy..[mcname]!"

with

scene dickclose with dissolve
$ smcname = mcname[0]
$ s2mcname = mcname[0] + mcname[1] if mcname else ''
sop "[smcname]... [smcname]... [s2mcname]... [mcname]!"

screenshot0001.png
 
Last edited:
  • Like
Reactions: INNERBLADE

FaceCrap

Ghost of torrents passed
Donor
Oct 1, 2020
1,611
1,127
327
And a suggestion:
$ tempname = renpy.input("{b}What is your name? default: [mcname]{/b}").strip()
if tempname != "":
$ mcname = tempname[0].upper() + tempname[1:] if tempname else ''
$ umcname = tempname.upper()

The first treatment is to have the first letter in upper case and the 2nd to have the MC name in full upper case when Sophia screams
No need to fix the first treatment, when a player is too lazy to use proper capitalization inputting a new name....that's a PEBCAK issue, not a game issue
for the second, there's text flags to show variable values in all caps, so [mcname] would just need to be changed to [mcname!u] in dialogue lines where the line is all caps.
 
Last edited:
  • Like
Reactions: INNERBLADE
Jul 16, 2020
182
297
181
is that the only scene considered "ntr"? cuz i agree with you that it's rape instead. i personally stay away from ntr, but if thats all it is (well having Love interest raped isn't great, but can get past that).
I believe people who dislike it would still call it NTR because for those who dislike NTR and also dislike any love interest getting used by another guy willing or unwilling it still gives those players the same discomfort as regular NTR, same as sharing/swinging... So is a Love interest getting raped NTR? I mean maybe not by Google definition but chances are people will still feel shit about it unless that is the content they are into
 

monkey33

Member
Aug 26, 2017
108
39
253
I believe people who dislike it would still call it NTR because for those who dislike NTR and also dislike any love interest getting used by another guy willing or unwilling it still gives those players the same discomfort as regular NTR, same as sharing/swinging... So is a Love interest getting raped NTR? I mean maybe not by Google definition but chances are people will still feel shit about it unless that is the content they are into
i feel ya, i'm 100% one of those people that rage at ntr and any other penises near my waifus :p (though this is my first time posting about it)
 
  • Like
Reactions: EJW

INNERBLADE

Member
Game Developer
Feb 21, 2020
279
5,532
548
to interbladecard :

a suggestion for the act02scene04.rpy line 104, replace:
scene xxx001b with dissolve
scene xxx001c with dissolve
scene xxx001b with dissolve
scene xxx001c with dissolve
scene xxx001b with dissolve
scene xxx001c with dissolve
scene xxx001b with dissolve
scene xxx001c with dissolve
scene xxx001b with dissolve
scene xxx001c with dissolve

with
image xxx001c_b:
"xxx001b"
pause 0.35
"xxx001c"
pause 0.35
repeat

scene xxx001c_b with dissolve
mc_mlou "{size=+10}I'M IN HEAVEN!!!!"

Which is more elegant (maybe you have to adjust the pause) and allow some to jerk off :cool:

another suggestion for act01scene02.rpy line 441
replace

scene dickclose with dissolve
sop "D..d..dy..[mcname]!"

with

scene dickclose with dissolve
$ smcname = mcname[0]
$ s2mcname = mcname[0] + mcname[1] if mcname else ''
sop "[smcname]... [smcname]... [s2mcname]... [mcname]!"

View attachment 3086496
thanks mate fixed all of the issues
 

INNERBLADE

Member
Game Developer
Feb 21, 2020
279
5,532
548
V2.9.2

No new content compared to 2.9.1 just bug fixes and the NTR should really be avoidable now

PC:
MAC:
 
Last edited:

Bob69

Uploading the World
Uploader
Donor
Compressor
Mar 2, 2019
23,601
322,104
998
Motel: A Son and Brother Story [v2.9.2] [Interbladecard] - Update only

The patch may break your game, use at your own risk.

Universal: v2.9.1 -> v2.9.2 [9,23 MB]
Attached to this post.

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

Please @ me or quote this post if there is a new version that doesn't show up on the "Latest Updates" page.
 
Last edited:

joelurmel

Engaged Member
Nov 3, 2022
2,713
4,768
397
Motel: A Son and Brother Story [v2.9.1] [Interbladecard] - Update only

The patch may break your game, use at your own risk.

Universal: v2.9.1 -> v2.9.2 [9,23 MB]
Attached to this post.

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

Please @ me or quote this post if there is a new version that doesn't show up on the "Latest Updates" page.
You have omitted to put acts\sct_06\act06scene04.rpy
 

Bob69

Uploading the World
Uploader
Donor
Compressor
Mar 2, 2019
23,601
322,104
998
Yeah pretty much:
You don't have permission to view the spoiler content. Log in or register now.

Manually checking them they are identical and UAGC that has done the patch does also say they are identical.

Edit just to be 100% sure, I redownloaded it. Last version v2.9.1 from Pixeldrain (those were here before it was updated)
And the v2.9.2 from Mega from the Dev a few post above. Unpacked them completely this time but still get that they are identical:
You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:
2.30 star(s) 24 Votes