- Apr 7, 2020
- 2,601
- 4,598
Actually that 'claymore/zweihander' in the clinic scene is a flamberge, not a zweihander.
flamberge is a (type of) zweihander afaikActually that 'claymore/zweihander' in the clinic scene is a flamberge, not a zweihander.
Actually yes, that's so. But a lot cooler.flamberge is a (type of) zweihander afaik
I googled this to make sure I was accurateActually that 'claymore/zweihander' in the clinic scene is a flamberge, not a zweihander.
Still a flamberge, though Just to be obnoxious.I googled this to make sure I was accurate
Oh, a new bug, delightfulgame runs fine but i get a crash when trying to open sexscenes or cutscenes from codex
If it can help i experienced 0 issues after i downloaded a clean 0.7 version, loaded a modded 0.7 gamesave and save it again before importing it in 0.8 test.Oh, a new bug, delightful
Any error code?
I thought a flamberge was when the waiter came over and set your dessert on fire.Actually that 'claymore/zweihander' in the clinic scene is a flamberge, not a zweihander.
Try downloading through one of the new download links on the first post and see if it works
Or when a blade is shaped like a vicious flame for no other purpose than to make a wound more painful and hard to stitch.I thought a flamberge was when the waiter came over and set your dessert on fire.
Can you tell me the variable name? Everything works fine except the options.if you remove dialogue box opacity, then it works
Can you take a screenshot of the error message, or send the traceback?Can you tell me the variable name? Everything works fine except the options.
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/screens.rpy", line 1096, in execute
screen preferences():
File "game/screens.rpy", line 1096, in execute
screen preferences():
File "game/screens.rpy", line 1100, in execute
fixed:
File "game/screens.rpy", line 1102, in execute
use game_menu(_("Preferences"), scroll="viewport"):
File "game/screens.rpy", line 583, in execute
screen game_menu(title, scroll=None, yinitial=0.0):
File "game/screens.rpy", line 583, in execute
screen game_menu(title, scroll=None, yinitial=0.0):
File "game/screens.rpy", line 592, in execute
frame:
File "game/screens.rpy", line 595, in execute
hbox:
File "game/screens.rpy", line 601, in execute
frame:
File "game/screens.rpy", line 604, in execute
if scroll == "viewport":
File "game/screens.rpy", line 606, in execute
viewport:
File "game/screens.rpy", line 615, in execute
vbox:
File "game/screens.rpy", line 616, in execute
transclude
File "game/screens.rpy", line 1102, in execute
use game_menu(_("Preferences"), scroll="viewport"):
File "game/screens.rpy", line 1105, in execute
vbox:
File "game/screens.rpy", line 1171, in execute
vbox: #add these 3 lines
File "game/screens.rpy", line 1173, in execute
bar value FieldValue(persistent, "dialogueBoxOpacity", range=1.0, style="slider")
File "renpy/common/00barvalues.rpy", line 288, in get_adjustment
value -= self.offset
TypeError: unsupported operand type(s) for -=: 'NoneType' and 'int'
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "renpy/common/_layout/screen_main_menu.rpym", line 28, in script
python hide:
File "renpy/ast.py", line 1138, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "renpy/python.py", line 1122, in py_exec_bytecode
exec(bytecode, globals, locals)
File "renpy/common/_layout/screen_main_menu.rpym", line 28, in <module>
python hide:
File "renpy/common/_layout/screen_main_menu.rpym", line 35, in _execute_python_hide
ui.interact()
File "renpy/ui.py", line 299, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "renpy/display/core.py", line 3579, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, pause_modal=pause_modal, **kwargs) # type: ignore
File "renpy/display/core.py", line 4052, in interact_core
root_widget.visit_all(lambda d : d.per_interact())
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/screen.py", line 476, in visit_all
callback(self)
File "renpy/display/core.py", line 4052, in <lambda>
root_widget.visit_all(lambda d : d.per_interact())
File "renpy/display/screen.py", line 487, in per_interact
self.update()
File "renpy/display/screen.py", line 680, in update
self.screen.function(**self.scope)
File "game/screens.rpy", line 1096, in execute
screen preferences():
File "game/screens.rpy", line 1096, in execute
screen preferences():
File "game/screens.rpy", line 1100, in execute
fixed:
File "game/screens.rpy", line 1102, in execute
use game_menu(_("Preferences"), scroll="viewport"):
File "game/screens.rpy", line 583, in execute
screen game_menu(title, scroll=None, yinitial=0.0):
File "game/screens.rpy", line 583, in execute
screen game_menu(title, scroll=None, yinitial=0.0):
File "game/screens.rpy", line 592, in execute
frame:
File "game/screens.rpy", line 595, in execute
hbox:
File "game/screens.rpy", line 601, in execute
frame:
File "game/screens.rpy", line 604, in execute
if scroll == "viewport":
File "game/screens.rpy", line 606, in execute
viewport:
File "game/screens.rpy", line 615, in execute
vbox:
File "game/screens.rpy", line 616, in execute
transclude
File "game/screens.rpy", line 1102, in execute
use game_menu(_("Preferences"), scroll="viewport"):
File "game/screens.rpy", line 1105, in execute
vbox:
File "game/screens.rpy", line 1171, in execute
vbox: #add these 3 lines
File "game/screens.rpy", line 1173, in execute
bar value FieldValue(persistent, "dialogueBoxOpacity", range=1.0, style="slider")
File "renpy/sl2/sldisplayables.py", line 262, in sl2bar
return renpy.display.behavior.Bar(range, value, width, height, vertical=False, **properties)
File "renpy/display/behavior.py", line 2108, in __init__
adjustment = value.get_adjustment()
File "renpy/common/00barvalues.rpy", line 288, in get_adjustment
value -= self.offset
TypeError: unsupported operand type(s) for -=: 'NoneType' and 'int'
Windows-10-10.0.19041 AMD64
Ren'Py 7.6.1.23060707
Projekt: Passion 0.8
Mon Aug 7 22:01:26 2023
You can also start the episode with default choices.Can someone provide me with an ending save of season 1?
The exact same as the one posted below this comment of yours.Can you take a screenshot of the error message, or send the traceback?
nothing. it's a bonus scene, played after creditsI think i might have missed...
What might have i done wrong?You don't have permission to view the spoiler content. Log in or register now.