Search found 4 matches

by PineFellow
Wed Jul 26, 2017 12:24 pm
Forum: Development of Ren'Py
Topic: RenPy games crash if system path to a screenshot contains brackets []
Replies: 2
Views: 968

Re: RenPy games crash if system path to a screenshot contains brackets []

Oh, right, forgot about renpy's conversion flags. Neat! Thanks.
by PineFellow
Tue Jul 25, 2017 6:24 pm
Forum: Development of Ren'Py
Topic: RenPy games crash if system path to a screenshot contains brackets []
Replies: 2
Views: 968

RenPy games crash if system path to a screenshot contains brackets []

Under Windows, placing renpy games in a folder that contains square brackets in its name breaks taking screenshots. NameError: Name 'RenPy_games' is not defined. Renpy tries to display a notification, that contains the path to the screenshot file, i.e. "Saved screenshot as C:\[RenPy_games]\mygame\sc...
by PineFellow
Sat Dec 10, 2016 11:46 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] Creating multiple Input areas (with DictInputValue)
Replies: 1
Views: 601

Issue solved.

Update, solved: so the $ac = DictInputValue(lst, i, default=False) line was breaking variable scope and the proper way... well, the way it works is this: default q_dict = some_function() # returns a dictionary with integer keys and text strings as values default inp_val_storage = [DictInputValue(q_d...
by PineFellow
Fri Dec 09, 2016 6:56 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] Creating multiple Input areas (with DictInputValue)
Replies: 1
Views: 601

[solved] Creating multiple Input areas (with DictInputValue)

Hello! I want to procedurally create a list of buttons and corresponding input fields (i.e. a list of mercenaries that you can personalize a bit) The problem I'm having is that by using DictInputValue() I'm able to change one value per screen call and I don't know how to use ScreenVariableInputValue...