• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

VN Ren'Py Abandoned Teenage Dirtbag [v0.5 Final] [Munchmallowgames]

3.60 star(s) 7 Votes
Jun 6, 2018
297
95
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/version04.rpy", line 1649, in script
if v4sarahpoolromance == True:
File "game/version04.rpy", line 1649, in <module>
if v4sarahpoolromance == True:
NameError: name 'v4sarahpoolromance' is not defined

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

Full traceback:
File "game/version04.rpy", line 1649, in script
if v4sarahpoolromance == True:
File "D:\PC Games\!!!\!11\Teenagedirtbag-0.4Alpha-pc\renpy\ast.py", line 1830, in execute
if renpy.python.py_eval(condition):
File "D:\PC Games\!!!\!11\Teenagedirtbag-0.4Alpha-pc\renpy\python.py", line 2035, in py_eval
return py_eval_bytecode(code, globals, locals)
File "D:\PC Games\!!!\!11\Teenagedirtbag-0.4Alpha-pc\renpy\python.py", line 2028, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "game/version04.rpy", line 1649, in <module>
if v4sarahpoolromance == True:
NameError: name 'v4sarahpoolromance' is not defined

Windows-7-6.1.7601-SP1
Ren'Py 7.3.2.320
Teenage dirtbag 0.4Alpha
Thu Aug 01 07:35:05 2019
 

Unclepop

Newbie
Mar 3, 2018
59
147
I hate Alison, so I didn't enjoy this update at all. I've also been turning down Lana at every opportunity in favour of Sarah, so the events at the end of this episode didn't make much sense. I might just give up on the game after this.

You don't have permission to view the spoiler content. Log in or register now.
MC's mother is really disgusting as well, I hope she at least washes her hands from Alison's anal fluids before she starts making breakfast.
 

Mormont

Devoted Member
Nov 30, 2018
11,925
53,076
Just started playing this and the MC already annoys me forget all these other girls and hook up with Sarah please tell me we get this choice eventually?
 

Moonis

Active Member
Mar 18, 2019
596
846
Quite hot update. It was nice to see mother getting her urges up.
I only wish MC could have taken control of the later scene with Alison and boned her well. A chance to be not so submissive.
And yeah, like previous posters said there was some error in the code and Alison's mouth was poorly made.

I'm aiming for Sarah as well. MC must be blind not to see he already has perfect girl beside him.
 

DrakoGhoul

Engaged Member
Jul 13, 2018
3,001
9,256
I'm enjoying the recent updates. I played since the beginning but fell behind at update 3 i believe so I'm currently playing through to catch back up to current content since I've missed 2 updates.

Alison is the best girl. Sarah's hot also but she's too vanilla for my taste and i boned her aunt so there's no way this relationship going to work for me. If you can have both alison and sarah then fine but if i have to choose one down the line... Over all this is still going good since 1st release.

Though one negative i would say is MC and his friend are kind of annoying though mostly his friend. The horny/pervert bestfriend trope is getting played out just like that friend from Waifu Academy who ruins everything the MC planned because he was too horny for pictures.
 

Canto Forte

Post Pro
Jul 10, 2017
21,011
25,698

whereislotion

Member
Jul 24, 2018
248
1,163
Ok, of course there are far worse things humanity invented and of course we must support game creators but it was just a reflex on that sight. Couldn't help and reflected my reaction :/
 
  • Like
Reactions: Canto Forte

Latecomer

Active Member
Game Developer
Sep 23, 2017
539
842
Traceback error when choosing to "Ignore" instead of staring at the worker's tits in the café

v5viostare is not defined if you choose to Ignore
Python:
    menu:
        "Stare":
            $ v5viostare = True
            scene bg v5sarahzayne 219
            z " {i} What kind of outfit is this! {/i} "
            scene bg v5sarahzayne 220
            z " {i} If all workers here are dressed like this then this is my favorite place to come from now on! {/i} "
            scene bg v5sarahzayne 221
            z " {i} Those are some nice tits! {/i} "
        "Ignore":
            pass
    scene bg v5sarahzayne 222
    vio " Are you not going to introduce me to your friend! "
    if v5viostare == True:
 

Drizzer9512

New Member
Game Developer
Nov 2, 2017
12
282
Found a bug, I think:

The game jumps to episode end prematurely. Open the file game/version05.rpy in a text editor, find " Let's hurry up we have long way to walk ". A couple of lines down there is a line with "jump v5end". Remove that line, save the file and restart the game.
Traceback error when choosing to "Ignore" instead of staring at the worker's tits in the café

v5viostare is not defined if you choose to Ignore
Python:
    menu:
        "Stare":
            $ v5viostare = True
            scene bg v5sarahzayne 219
            z " {i} What kind of outfit is this! {/i} "
            scene bg v5sarahzayne 220
            z " {i} If all workers here are dressed like this then this is my favorite place to come from now on! {/i} "
            scene bg v5sarahzayne 221
            z " {i} Those are some nice tits! {/i} "
        "Ignore":
            pass
    scene bg v5sarahzayne 222
    vio " Are you not going to introduce me to your friend! "
    if v5viostare == True:
Will have it fixed for final release in a day or two. Just waiting to see if there are more bugs. Thanks for reporting! Don't know how I didn't see that early end
 

Latecomer

Active Member
Game Developer
Sep 23, 2017
539
842
Will have it fixed for final release in a day or two. Just waiting to see if there are more bugs. Thanks for reporting! Don't know how I didn't see that early end
You might wanna add an additional .rpy file, call it default.rpy or whatever

Add all the variables in the game there to avoid such errors. For example,
Python:
default v5compliment = False
default v5eyes = False
default v5romance = False
etc.pp.

Also I find it a bit weird how you design your ifs.

For instance, instead of doing
Python:
    if v3approach == True:
        bri " I remember him from hallway "
    elif v3approach == False:
        pass
, why not do
Python:
    if v3approach:
        bri " I remember him from hallway "
    else:
        pass
?

In fact, that "else" is not even needed there, you can completely omit that part

Or this here, why use
Python:
if (v5compliment == True) and (v5eyes == True):
when you could be using
Python:
if v5compliment and v5eyes:
?
 
  • Wow
Reactions: Canto Forte

playb0y44

Well-Known Member
Game Compressor
Game Developer
Aug 16, 2017
1,789
28,492
Here's my compressed version.

Note: This is an unofficial modified version of this game so if something goes wrong it goes wrong ;)

Image/audio/video quality is reduced to make this smaller. This is not a perfect process and sometimes can break a game. You've been warned so no complaining.

Teenage Dirtbag [v0.5 Alpha] [Munchmallowgames] - Original Size: 2.13 GB

Download Win (276 MB): - - -


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

Drizzer9512

New Member
Game Developer
Nov 2, 2017
12
282
You might wanna add an additional .rpy file, call it default.rpy or whatever

Add all the variables in the game there to avoid such errors. For example,
Python:
default v5compliment = False
default v5eyes = False
default v5romance = False
etc.pp.

Also I find it a bit weird how you design your ifs.

For instance, instead of doing
Python:
    if v3approach == True:
        bri " I remember him from hallway "
    elif v3approach == False:
        pass
, why not do
Python:
    if v3approach:
        bri " I remember him from hallway "
    else:
        pass
?

In fact, that "else" is not even needed there, you can completely omit that part

Or this here, why use
Python:
if (v5compliment == True) and (v5eyes == True):
when you could be using
Python:
if v5compliment and v5eyes:
?
That is how I first learned how to do it and it just stuck with me...
 

Harry Joker

Newbie
Dec 30, 2017
51
186
Found a bug, I think:

The game jumps to episode end prematurely. Open the file game/version05.rpy in a text editor, find " Let's hurry up we have long way to walk ". A couple of lines down there is a line with "jump v5end". Remove that line, save the file and restart the game.
Maybe it's not a bug.
Maybe there are two path: Sarah or Lana

At the end of the file version04pt2.rpy is a condition:
Python:
if lanapoolend == False:
    #bla bla bla...
    jump v5startsarah
elif lanapoolend == True:
    #bla bla bla...
    jump v5startlana
 
3.60 star(s) 7 Votes