- Jan 3, 2019
- 534
- 314
Is it just straight up NTR? Or some NTS? And I know there's non NTR scenes as well anyway. Just wondering.
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.Why is the mega download link for a 902 MB file but the pixeldrain one is for a 946 MB file?
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.The VN is crashing all the time, anyone have the same issue?
Thank you for the advice! I'm definitely gonna take a look at that.Actually, you have some serious issues with your code.
First off, with choices:
These should all beCode:#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"
default
notdefine
. 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:
And in code, you can check that condition like so:Code:default return_the_favor = False
orCode:if 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:if not return_the_favor: # do something else: # do something else
Note that we still useCode: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") ])
define
for the Character definitions, because Ren'Py doesn't need to save them.
There's a little bit of each.Is it just straight up NTR? Or some NTS? And I know there's non NTR scenes as well anyway. Just wondering.
Sorry for the question, if I want to play just the NTS route, can I or do I have to play it together with the NTR?There's a little bit of each.
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.....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.
agh, I wonder if there is even a possibility 2 not be a cuck here....as the dev is Beta himself...I'm Beto
Sorry for the question, if I want to play just the NTS route, can I or do I have to play it together with the NTR?
Yes I got the same ERROR...'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