TomUK

Engaged Member
Sep 28, 2021
3,388
2,535
407
Why is the mega download link for a 902 MB file but the pixeldrain one is for a 946 MB file?
That's why I don't trust the other sites for downloads, if there isn't a Mega link, I'll wait for someone to provide one or the compressed version usually gets a Mega link.
 

The_Grim_Reaper

Newbie
Game Developer
Oct 7, 2021
47
553
174
Actually, you have some serious issues with your code.

First off, with choices:
Code:
#Define all choices
define show_her = "0"
define keep_fucking_violet = "0"
define stop_this_right_now = "0"
define help_him = "0"
define wait_for_the_nurse = "0"
define embrace_feelings = "0"
define nod_her_to_stop = "0"
define park_photos = "0"
define no_park_photos = "0"
define ted_shower = "0"
define violet_shower = "0"
define dont_let_him_pee = "0"
define let_him_pee = "0"
define dont_move = "0"
define close_the_curtain = "0"
define close_it_now = "0"
define let_him_keep_looking = "0"
define open_the_door = "0"
define get_back_to_the_kitchen = "0"
define tell_him_to_get_out = "0"
define allow_him_to_jerk_off = "0"
define back_out = "0"
define show_you_are_okay = "0"
define let_him_finish = "0"
define dont_let_him_finish = "0"
define normal_picture = "0"
define return_the_favor = "0"
These should all be default not define. Otherwise, Ren'Py won't save these in the save files.

Also, you're using "0" as a string. If these are meant to be boolean (true/false), you should make them so:

Code:
default return_the_favor = False
And in code, you can check that condition like so:
Code:
if return_the_favor:

    # do something
else:

    # do something else
or

Code:
if not return_the_favor:

    # do something

else:

    # do something else
For the name changing variable, you actually have to default that, too! Otherwise, people will get the error.

Code:
default violet = "Violet"
define v = Character("[violet]", color="#9303a0", who_outlines=[ (3, "#000000") ], what_outlines=[ (3, "#000000") ])
define vt = Character("[violet] Thinking", color="#9303a0", what_italic=True, what_color="#ffff00", who_outlines=[ (3, "#000000") ], what_outlines=[ (3, "#000000") ])
Note that we still use define for the Character definitions, because Ren'Py doesn't need to save them.
Thank you for the advice! I'm definitely gonna take a look at that.
 

tomas024

Member
Apr 30, 2018
169
131
176
You need to start a new game, they let you now change ya gf's name too, old saves crash now, but a new game works fine.
My saves are working, in this update every time change dialogue and image, show error, i ignore it, new dialogue and image hapens again, and so on.....
 

Dessolos

Post Pro
Jul 25, 2017
20,036
28,313
936
I didn't play the update in full I just ctrl skipped around as I didn't have time yet but wanted to see the shower scene from the ending of the last update. I must say The_Grim_Reaper I can't wait for more updates. The shower scenes was excellent very hot even without sex. Gonna check out the full update in full later but I very much look forward to how updates progress in this game. So far for me it has the same quality of some of my favorite NTR / sharing game gonna be better once we get alot of updates.
 

MagicMan753

Well-Known Member
Nov 19, 2021
1,441
3,166
387
The_Grim_Reaper

There is this weird clear like glow around Amelia and Male Mc hair throughout the whole kitchen scene. The other two look fine.

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

tomkeos

Newbie
Mar 30, 2020
53
25
162
'm sorry, but an uncaught exception occurred.

While running game code:
NameError: Name 'violet' is not defined.

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

Full traceback:
File "ep2.rpyc", line 5, in script
File "K:\games\NewNeighborhood-v0.2-pc\renpy\ast.py", line 2560, in execute
Say.execute(self)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\ast.py", line 615, in execute
renpy.exports.say(who, what, *args, **kwargs)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\exports.py", line 1494, in say
who(what, *args, **kwargs)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\character.py", line 1377, in __call__
who = self.prefix_suffix("who", self.who_prefix, who, self.who_suffix)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\character.py", line 1293, in prefix_suffix
return (sub(prefix) + sub(body) + sub(suffix))
File "K:\games\NewNeighborhood-v0.2-pc\renpy\character.py", line 1273, in sub
return renpy.substitutions.substitute(s, scope=scope, force=force, translate=translate)[0]
File "K:\games\NewNeighborhood-v0.2-pc\renpy\substitutions.py", line 371, in substitute
s = interpolate(s, kwargs) # type: ignore
File "K:\games\NewNeighborhood-v0.2-pc\renpy\substitutions.py", line 86, in interpolate
raise e
File "K:\games\NewNeighborhood-v0.2-pc\renpy\substitutions.py", line 78, in interpolate
value = renpy.python.py_eval(code, {}, scope)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\python.py", line 1209, in py_eval
return py_eval_bytecode(code, globals, locals)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\python.py", line 1202, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "<none>", line 1, in <module>
File "K:\games\NewNeighborhood-v0.2-pc\renpy\substitutions.py", line 313, in __getitem__
raise NameError("Name '{}' is not defined.".format(key))
NameError: Name 'violet' is not defined.

Windows-10-10.0.26100 AMD64
Ren'Py 8.2.3.24061702
New Neighborhood v0.2
Sat Dec 7 02:47:03 2024
 

SonsOfLiberty

Community Champion
Compressor
Sep 3, 2022
30,419
279,961
957
New Neighborhood [v0.2] [The Grim Reaper]

COMPRESSED:

Win/Linux:
- - -

Mac:
- - -
 

LouisCon

Member
Nov 17, 2019
204
272
231
'm sorry, but an uncaught exception occurred.

While running game code:
NameError: Name 'violet' is not defined.

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

Full traceback:
File "ep2.rpyc", line 5, in script
File "K:\games\NewNeighborhood-v0.2-pc\renpy\ast.py", line 2560, in execute
Say.execute(self)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\ast.py", line 615, in execute
renpy.exports.say(who, what, *args, **kwargs)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\exports.py", line 1494, in say
who(what, *args, **kwargs)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\character.py", line 1377, in __call__
who = self.prefix_suffix("who", self.who_prefix, who, self.who_suffix)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\character.py", line 1293, in prefix_suffix
return (sub(prefix) + sub(body) + sub(suffix))
File "K:\games\NewNeighborhood-v0.2-pc\renpy\character.py", line 1273, in sub
return renpy.substitutions.substitute(s, scope=scope, force=force, translate=translate)[0]
File "K:\games\NewNeighborhood-v0.2-pc\renpy\substitutions.py", line 371, in substitute
s = interpolate(s, kwargs) # type: ignore
File "K:\games\NewNeighborhood-v0.2-pc\renpy\substitutions.py", line 86, in interpolate
raise e
File "K:\games\NewNeighborhood-v0.2-pc\renpy\substitutions.py", line 78, in interpolate
value = renpy.python.py_eval(code, {}, scope)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\python.py", line 1209, in py_eval
return py_eval_bytecode(code, globals, locals)
File "K:\games\NewNeighborhood-v0.2-pc\renpy\python.py", line 1202, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "<none>", line 1, in <module>
File "K:\games\NewNeighborhood-v0.2-pc\renpy\substitutions.py", line 313, in __getitem__
raise NameError("Name '{}' is not defined.".format(key))
NameError: Name 'violet' is not defined.

Windows-10-10.0.26100 AMD64
Ren'Py 8.2.3.24061702
New Neighborhood v0.2
Sat Dec 7 02:47:03 2024
Yes I got the same ERROR...
The default name Violet is not defined in the script.. WTF.... DEF.. Your coding sucks
Solution:
Start from the beginning and Rename Violet to something else..
===> Problem solved..
 

LouisCon

Member
Nov 17, 2019
204
272
231
I truly don't want to be a party pooper..... 3 months and a 3 page update... DEV.. Your PC must be verry.. slow..
Your DEVELOPERS call it..... Its a slow burn VN... It will take 6 years for the first encounter :unsure:
Dude... I stay in a lawless country and we are the worst drivers in the whole world..
I might not see the next release.. :cry: so sad...
 
3.50 star(s) 11 Votes